]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/issue-19398.rs
Merge commit 'e636b88aa180e8cab9e28802aac90adbc984234d' into clippyup
[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() {}