about summary refs log tree commit diff
path: root/tests/ui/type-alias-impl-trait/itiat-allow-nested-closures.bad.stderr
blob: 9d38e8f36b15c79744189d13a547a160d9312bf8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
error[E0308]: mismatched types
  --> $DIR/itiat-allow-nested-closures.rs:21:22
   |
LL |     type Assoc = impl Sized;
   |                  ---------- the found opaque type
...
LL |         let _: i32 = closure();
   |                ---   ^^^^^^^^^ expected `i32`, found opaque type
   |                |
   |                expected due to this
   |
   = note:     expected type `i32`
           found opaque type `<() as Foo>::Assoc`

error[E0308]: mismatched types
  --> $DIR/itiat-allow-nested-closures.rs:22:9
   |
LL |     fn bar() -> Self::Assoc {
   |                 ----------- expected `()` because of return type
...
LL |         1i32
   |         ^^^^ expected `()`, found `i32`

error: aborting due to 2 previous errors

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