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 16:12:52 -05:00
extern "C" {
f(); //~ ERROR expected one of `!` or `::`, found `(`
2013-05-22 02:11:48 -05:00
}
fn main() {
}