rust/tests/ui/parser/no-const-fn-in-extern-block.rs

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

9 lines
210 B
Rust
Raw Normal View History

2020-09-01 16:12:52 -05:00
extern "C" {
const fn foo();
//~^ ERROR functions in `extern` blocks cannot have qualifiers
const unsafe fn bar();
//~^ ERROR functions in `extern` blocks cannot have qualifiers
}
fn main() {}