mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
149 B
Rust
12 lines
149 B
Rust
// check-pass
|
|
|
|
const FOO: &&&u32 = &&&42;
|
|
|
|
fn main() {
|
|
match unimplemented!() {
|
|
&&&42 => {},
|
|
FOO => {},
|
|
_ => {},
|
|
}
|
|
}
|