8 lines
86 B
Rust
8 lines
86 B
Rust
// rustfmt-trailing_semicolon: false
|
|
|
|
fn foo() {}
|
|
fn main() {
|
|
return;
|
|
foo()
|
|
}
|