blob: 9aafc7ca9b851db1e567e7077edd5d71b1b206fe [file] [log] [blame]
#![feature(unwind_attributes)]
#[unwind(allowed, aborts)]
//~^ ERROR malformed `unwind` attribute
extern "C" fn f1() {}
#[unwind(unsupported)]
//~^ ERROR malformed `unwind` attribute
extern "C" fn f2() {}
fn main() {}