
Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
16 lines
178 B
Rust
16 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;
|
|
}
|