0
0
mirror of https://github.com/rust-lang/rust.git synced 2024-12-01 13:18:54 +01:00
rust/tests/ui/structs-enums/unit-like-struct.rs
2024-02-16 20:02:50 +00:00

10 lines
121 B
Rust

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