mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-05 08:24:31 +00:00
10 lines
120 B
Rust
10 lines
120 B
Rust
// run-pass
|
|
struct Foo;
|
|
|
|
pub fn main() {
|
|
let x: Foo = Foo;
|
|
match x {
|
|
Foo => { println!("hi"); }
|
|
}
|
|
}
|