rustc/tests/ui/parser/no-const-fn-in-extern-block.rs
2023-08-02 10:33:26 +02: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() {}