summaryrefslogtreecommitdiffstats
path: root/src/test/ui/generic-associated-types/issue-68648-2.stderr
blob: b2bef19eb5e9cf0c96cae1dec39f73a07289d5d5 (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-68648-2.rs:12:17
   |
LL | fn bug<'a, T: Fun<F<'a> = T>>(t: T) -> T::F<'a> {
   |            - this type parameter
LL |     T::identity(())
   |     ----------- ^^ expected type parameter `T`, found `()`
   |     |
   |     arguments to this function are incorrect
   |
   = note: expected type parameter `T`
                   found unit type `()`
note: associated function defined here
  --> $DIR/issue-68648-2.rs:4:8
   |
LL |     fn identity<'a>(t: Self::F<'a>) -> Self::F<'a> { t }
   |        ^^^^^^^^     --------------

error: aborting due to previous error

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