blob: 59ab544464967606ee93c445dfbf91c84f73d92f [file] [log] [blame]
// 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();
}