mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-21 07:58:17 +00:00
12 lines
149 B
Rust
12 lines
149 B
Rust
// check-pass
|
|
|
|
const FOO: &&&u32 = &&&42;
|
|
|
|
fn main() {
|
|
match unimplemented!() {
|
|
&&&42 => {},
|
|
FOO => {},
|
|
_ => {},
|
|
}
|
|
}
|