18 lines
521 B
Rust
18 lines
521 B
Rust
// failure-status: 101
|
|
// rustc-env:RUST_BACKTRACE=0
|
|
// normalize-stderr-test "note: rustc 1.* running on .*" -> "note: rustc VERSION running on TARGET"
|
|
// normalize-stderr-test "note: compiler flags: .*" -> "note: compiler flags: FLAGS"
|
|
// normalize-stderr-test "/_match.rs:[0-9]+:[0-9]+" -> "/_match.rs:LL:CC"
|
|
|
|
// This is a repro test for an ICE in our pattern handling of constants.
|
|
|
|
const FOO: &&&u32 = &&&42;
|
|
|
|
fn main() {
|
|
match unimplemented!() {
|
|
&&&42 => {},
|
|
FOO => {},
|
|
_ => {},
|
|
}
|
|
}
|