mod line; mod point; #[cfg(test)] mod test { use super::line::Line; use super::point::Point; #[test] fn can_construct_line() { let start = Point { x: 10, y: 25 }; let end = Point { x: 10, y: 25 }; let line = Line { start, end }; } }