f9c1cfa889
Except for `ints.rs`, which is already handled by a pending pull request.
12 lines
99 B
Rust
12 lines
99 B
Rust
fn empty() {}
|
|
|
|
fn unit_var() {
|
|
let x = ();
|
|
x
|
|
}
|
|
|
|
fn main() {
|
|
empty();
|
|
unit_var();
|
|
}
|