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