]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/issue-19398.rs
Merge commit 'ff0993c5e9162ddaea78e83d0f0161e68bd4ea73' into clippy
[rust.git] / src / test / ui / parser / issue-19398.rs
1 trait T {
2     extern "Rust" unsafe fn foo();
3     //~^ ERROR expected `{`, found keyword `unsafe`
4 }
5
6 fn main() {}