mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
19 lines
213 B
Rust
19 lines
213 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; }
|
|
|
|
fn g() {
|
|
unsafe {
|
|
f();
|
|
}
|
|
}
|
|
|
|
pub fn main() {
|
|
}
|