summaryrefslogtreecommitdiffstats
path: root/tests/ui/rfcs/rfc-1937-termination-trait/termination-trait-impl-trait.stderr
blob: 5ee6d127e85e37c4136264baf8d4ad0c2a14895a (plain)
1
2
3
4
5
6
7
8
9
10
11
error[E0277]: `main` has invalid return type `impl Copy`
  --> $DIR/termination-trait-impl-trait.rs:2:14
   |
LL | fn main() -> impl Copy { }
   |              ^^^^^^^^^ `main` can only return types that implement `Termination`
   |
   = help: consider using `()`, or a `Result`

error: aborting due to previous error

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