summary refs log tree commit diff
path: root/src/test/ui/issue-32323.stderr
blob: 09ac1553b3a8e1d4b46dcd188a680882f0753735 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0308]: mismatched types
  --> $DIR/issue-32323.rs:15:49
   |
LL | pub fn f<'a, T: Tr<'a>>() -> <T as Tr<'a>>::Out {}
   |                                                 ^^ expected associated type, found ()
   |
   = note: expected type `<T as Tr<'a>>::Out`
              found type `()`

error: aborting due to previous error

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