blob: 34c9fd15f7cf91245543c7c1b60ab6090f21c41a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
error[E0658]: declaration of a nonstandard #[main] function may change over time, for now a top-level `fn main()` is required (see issue #29634)
--> $DIR/feature-gate-main.rs:12:1
|
LL | fn foo() {} //~ ERROR: declaration of a nonstandard #[main] function may change over time
| ^^^^^^^^^^^
|
= help: add #![feature(main)] to the crate attributes to enable
error: aborting due to previous error
For more information about this error, try `rustc --explain E0658`.
|