summaryrefslogtreecommitdiffstats
path: root/tests/ui/associated-inherent-types/issue-109789.stderr
blob: 84fc85cd09e4812281e7ea4e7d4bd8bd79f01d77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
error[E0308]: mismatched types
  --> $DIR/issue-109789.rs:18:11
   |
LL | fn bar(_: Foo<for<'a> fn(&'a ())>::Assoc) {}
   |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ one type is more general than the other
   |
   = note: expected struct `Foo<fn(&'static ())>`
              found struct `Foo<for<'a> fn(&'a ())>`

error[E0308]: mismatched types
  --> $DIR/issue-109789.rs:18:11
   |
LL | fn bar(_: Foo<for<'a> fn(&'a ())>::Assoc) {}
   |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ one type is more general than the other
   |
   = note: expected struct `Foo<fn(&'static ())>`
              found struct `Foo<for<'a> fn(&'a ())>`

error: aborting due to 2 previous errors

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