rustc/tests/ui/rust-2024/unsafe-extern-blocks/unsafe-on-extern-block-issue-126756.fixed
2025-01-11 15:57:26 +01:00

10 lines
191 B
Plaintext

//@ run-rustfix
#![allow(dead_code)]
unsafe extern "C" {
unsafe fn foo(); //~ ERROR items in `extern` blocks without an `unsafe` qualifier cannot have safety qualifiers
}
fn main() {}