2024-02-16 20:02:50 +00:00
|
|
|
//@ run-rustfix
|
2020-07-02 14:32:12 +09:00
|
|
|
|
|
|
|
|
pub foo(_s: usize) { bar() }
|
2018-11-30 15:05:13 -08:00
|
|
|
//~^ ERROR missing `fn` for function definition
|
2017-11-21 06:49:15 -08:00
|
|
|
|
2020-07-02 14:32:12 +09:00
|
|
|
fn bar() {}
|
|
|
|
|
|
2017-11-21 08:03:02 -08:00
|
|
|
fn main() {
|
|
|
|
|
foo(2);
|
2017-11-21 06:49:15 -08:00
|
|
|
}
|