2018-03-13 18:22:43 +00:00
|
|
|
error[E0601]: `main` function not found in crate `main_wrong_location`
|
2022-01-21 00:15:39 +00:00
|
|
|
--> $DIR/main-wrong-location.rs:5:2
|
2018-02-23 00:42:32 +00:00
|
|
|
|
|
2022-01-21 00:15:39 +00:00
|
|
|
LL | }
|
|
|
|
| ^ the main function must be defined at the crate level (in `$DIR/main-wrong-location.rs`)
|
2019-09-08 17:06:49 +00:00
|
|
|
|
|
|
|
|
note: here is a function named `main`
|
2022-01-21 00:15:39 +00:00
|
|
|
--> $DIR/main-wrong-location.rs:4:5
|
2018-02-23 00:42:32 +00:00
|
|
|
|
|
|
|
|
LL | fn main() { }
|
2022-05-03 21:58:19 +00:00
|
|
|
| ^^^^^^^^^
|
2019-09-08 17:06:49 +00:00
|
|
|
= note: you have one or more functions named `main` not defined at the crate level
|
2021-04-08 13:37:38 +00:00
|
|
|
= help: consider moving the `main` function definitions
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0601`.
|