]> git.lizzy.rs Git - rust.git/blob - src/test/ui/multiple-main-2.stderr
Merge commit 'ff0993c5e9162ddaea78e83d0f0161e68bd4ea73' into clippy
[rust.git] / src / test / ui / multiple-main-2.stderr
1 error[E0137]: multiple functions with a `#[main]` attribute
2   --> $DIR/multiple-main-2.rs:8:1
3    |
4 LL | / fn bar() {
5 LL | | }
6    | |_- first `#[main]` function
7 ...
8 LL | / fn foo() {
9 LL | | }
10    | |_^ additional `#[main]` function
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0137`.