mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
21 lines
343 B
Rust
21 lines
343 B
Rust
// Fail macros without arguments need to be disambiguated in
|
|
// certain positions
|
|
|
|
//@ run-fail
|
|
//@ error-pattern:oops
|
|
//@ ignore-emscripten no processes
|
|
|
|
fn bigpanic() {
|
|
while (panic!("oops")) {
|
|
if (panic!()) {
|
|
match (panic!()) {
|
|
() => {}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
bigpanic();
|
|
}
|