rust/tests/ui/unsafe/unsafe-fn-called-from-unsaf...

18 lines
211 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;
}