summaryrefslogtreecommitdiffstats
path: root/tests/ui/type-alias-impl-trait/hidden_behind_projection_behind_struct_field.stderr
blob: 00aedfae463755100e37a3f1038ade9002a5c2d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error[E0308]: mismatched types
  --> $DIR/hidden_behind_projection_behind_struct_field.rs:19:22
   |
LL |     type Assoc = impl std::fmt::Debug;
   |                  -------------------- the expected opaque type
LL |     fn foo() -> Foo<Bar> {
LL |         Foo { field: () }
   |                      ^^ expected opaque type, found `()`
   |
   = note: expected opaque type `<Bar as Trait>::Assoc`
                found unit type `()`
note: this item must have the opaque type in its signature in order to be able to register hidden types
  --> $DIR/hidden_behind_projection_behind_struct_field.rs:18:8
   |
LL |     fn foo() -> Foo<Bar> {
   |        ^^^

error: aborting due to 1 previous error

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