mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 02:31:20 +00:00
12 lines
105 B
Rust
12 lines
105 B
Rust
//@ run-pass
|
|
|
|
struct Foo;
|
|
|
|
static X: Foo = Foo;
|
|
|
|
pub fn main() {
|
|
match X {
|
|
Foo => {}
|
|
}
|
|
}
|