rustc/tests/ui/structs-enums/unit-like-struct.rs
2023-07-27 22:48:29 +08:00

10 lines
120 B
Rust

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