1 // edition:2018 2 err()3 default pub const async unsafe extern fn err() {} //~ ERROR `default` is not followed by an item 4 //~^ ERROR expected item, found keyword `pub` 5 ok()6 pub default const async unsafe extern fn ok() {} 7