summaryrefslogtreecommitdiffstats
path: root/tests/ui/type-alias-impl-trait/issue-74280.stderr
blob: c09efbe4e1333085e8281d98e69aacfd7d82811f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0308]: mismatched types
  --> $DIR/issue-74280.rs:9:5
   |
LL | fn test() -> Test {
   |              ---- expected `()` because of return type
LL |     let y = || -> Test { () };
LL |     7
   |     ^ expected `()`, found integer

error: aborting due to 1 previous error

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