10 lines
133 B
Rust
10 lines
133 B
Rust
|
// -*- rust -*-
|
||
|
// error-pattern: unsafe functions can only be called
|
||
|
|
||
|
unsafe fn f() { ret; }
|
||
|
|
||
|
fn main() {
|
||
|
let x = f;
|
||
|
x();
|
||
|
}
|