8 lines
145 B
Rust
8 lines
145 B
Rust
|
whoops() {}
|
||
|
//~^ ERROR missing `fn` for function definition
|
||
|
//~| HELP add `fn` here to parse `whoops` as a function
|
||
|
|
||
|
fn main() {
|
||
|
whoops();
|
||
|
}
|