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

9 lines
206 B
Rust
Raw Normal View History

extern {
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() {}