rust/tests/ui/structs-enums/unit-like-struct.rs

10 lines
121 B
Rust

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