6 lines
67 B
Rust
6 lines
67 B
Rust
|
|
|
|
fn f() { let x: () = (); return x; }
|
|
|
|
fn main() { let x = f(); }
|