rust/tests/ui/parser/no-const-fn-in-extern-block.rs
2023-01-11 09:32:08 +00:00

9 lines
210 B
Rust

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