blob: 009695b177f965d1fa0ecf88272d5073814ab906 [file] [log] [blame]
#![feature(unwind_attributes)]
#[unwind] //~ ERROR malformed `unwind` attribute
extern "C" fn f1() {}
#[unwind = ""] //~ ERROR malformed `unwind` attribute
extern "C" fn f2() {}
fn main() {}