rust/src/test/ui/unsafe-fn-called-from-unsaf...

18 lines
209 B
Rust

// run-pass
#![allow(dead_code)]
//
// See also: ui/unsafe/unsafe-fn-called-from-safe.rs
// pretty-expanded FIXME #23616
unsafe fn f() { return; }
unsafe fn g() {
f();
}
pub fn main() {
return;
}