rust/tests/ui/structs-enums/unit-like-struct.rs
2023-01-11 09:32:08 +00:00

10 lines
120 B
Rust

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