2023-10-27 20:12:45 +00:00
|
|
|
error: missing parameters for function definition
|
|
|
|
--> $DIR/issue-108109-fn-missing-params.rs:3:15
|
|
|
|
|
|
|
|
|
LL | pub fn missing -> () {}
|
2024-07-06 03:07:46 +00:00
|
|
|
| ^
|
|
|
|
|
|
|
|
|
help: add a parameter list
|
|
|
|
|
|
|
|
|
LL | pub fn missing() -> () {}
|
|
|
|
| ++
|
2023-10-27 20:12:45 +00:00
|
|
|
|
|
|
|
error: missing parameters for function definition
|
|
|
|
--> $DIR/issue-108109-fn-missing-params.rs:6:16
|
|
|
|
|
|
|
|
|
LL | pub fn missing2 {}
|
2024-07-06 03:07:46 +00:00
|
|
|
| ^
|
|
|
|
|
|
|
|
|
help: add a parameter list
|
|
|
|
|
|
|
|
|
LL | pub fn missing2() {}
|
|
|
|
| ++
|
2023-10-27 20:12:45 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|