summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0137.stderr
blob: a5f05d33a08151d3e04e21b798df4719dd608afd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0137]: multiple functions with a #[main] attribute
  --> $DIR/E0137.rs:7:1
   |
LL | fn foo() {}
   | ----------- first #[main] function
...
LL | fn f() {}
   | ^^^^^^^^^ additional #[main] function

error: aborting due to previous error

For more information about this error, try `rustc --explain E0137`.