summary refs log tree commit diff
path: root/src/test/ui/parser/issue-19398.rs
blob: 822f4a6fde2c7993ea89e2ed82357f7032cedc77 (plain)
1
2
3
4
5
trait T {
    extern "Rust" unsafe fn foo(); //~ ERROR expected `fn`, found `unsafe`
}

fn main() {}