(root)/
gcc-13.2.0/
gcc/
testsuite/
rust/
compile/
unsafe3.rs
extern "C" {
    static VALUE: char;
}

fn main() {
    let _ = VALUE; // { dg-error "use of extern static" }
    unsafe {
        let _ = VALUE;
    }
}