rust/tests/ui/parser/extern-no-fn.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
88 B
Rust
Raw Normal View History

2020-09-01 21:12:52 +00:00
extern "C" {
f(); //~ ERROR expected one of `!` or `::`, found `(`
2013-05-22 07:11:48 +00:00
}
fn main() {
}