blob: e7f98e58c4f390937899cfb47e13e653c1314e9c [file] [log] [blame]
// Fail macros without arguments need to be disambiguated in
// certain positions
// error-pattern:oops
fn bigpanic() {
while (panic!("oops")) {
if (panic!()) {
match (panic!()) {
() => {}
}
}
}
}
fn main() {
bigpanic();
}