blob: a3248693d7c073d1806483a112fcd2be99886b04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
mod point;
#[cfg(test)]
mod test {
use super::point::{Line, Point};
#[test]
fn line_fields() {
let line = Line {
start: Box::new(Point { x: 10, y: 25 }),
end: Box::new(Point { x: 42, y: 47 }),
};
}
}
|