8 lines
70 B
Rust
8 lines
70 B
Rust
|
fn f() {
|
||
|
let () x = ();
|
||
|
ret x;
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
auto x = f();
|
||
|
}
|