rust/tests/ui/unsafe/extern-function-requires-unsafe-5844.rs
2025-08-27 00:23:26 -04:00

9 lines
162 B
Rust

// https://github.com/rust-lang/rust/issues/5844
//@aux-build:aux-5844.rs
extern crate aux_5844;
fn main() {
aux_5844::rand(); //~ ERROR: requires unsafe
}