]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-32323.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / issues / issue-32323.stderr
1 error[E0308]: mismatched types
2 --> $DIR/issue-32323.rs:5:30
3 |
4 LL | pub fn f<'a, T: Tr<'a>>() -> <T as Tr<'a>>::Out {}
5 | - ^^^^^^^^^^^^^^^^^^ expected associated type, found `()`
6 | |
7 | implicitly returns `()` as its body has no tail or `return` expression
8 |
9 = note: expected associated type `<T as Tr<'a>>::Out`
10 found unit type `()`
11 = note: consider constraining the associated type `<T as Tr<'a>>::Out` to `()` or calling a method that returns `<T as Tr<'a>>::Out`
12 = note: for more information, visit https://doc.rust-lang.org/book/ch19-03-advanced-traits.html
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0308`.