summaryrefslogtreecommitdiff
path: root/examples/01-struct/output/rust/src/point.rs
blob: 4a2b09cd7a80d03dcb2f8cc81121aeb84a2ae34e (plain)
1
2
3
4
5
6
7
8
9
pub struct Line {
    start: Point,
    end: Point,
}

pub struct Point {
    x: i32,
    y: i32,
}