rust/src/test/ui/structs-enums/unit-like-struct.rs
2019-07-27 18:56:16 +03:00

10 lines
120 B
Rust

// run-pass
struct Foo;
pub fn main() {
let x: Foo = Foo;
match x {
Foo => { println!("hi"); }
}
}