mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 10:19:00 +00:00
17 lines
178 B
Rust
17 lines
178 B
Rust
//@ run-pass
|
|
|
|
#![allow(dead_code)]
|
|
//
|
|
// See also: ui/unsafe/unsafe-fn-called-from-safe.rs
|
|
|
|
|
|
unsafe fn f() { return; }
|
|
|
|
unsafe fn g() {
|
|
f();
|
|
}
|
|
|
|
pub fn main() {
|
|
return;
|
|
}
|