summaryrefslogtreecommitdiff
path: root/exercises/12_options/options3.rs
blob: 5b70a79268d003f9a0880917eb81bfeca5a2f298 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
struct Point {
    x: i32,
    y: i32,
}

fn main() {
    let y: Option<Point> = Some(Point { x: 100, y: 200 });

    match y {
        Some(p) => println!("Co-ordinates are {},{} ", p.x, p.y),
        _ => panic!("no match!"),
    }
    y; // Fix without deleting this line.
}