]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-72076.stderr
Merge commit '7c7683c8efe447b251d6c5ca6cce51233060f6e8' into clippyup
[rust.git] / src / test / ui / issues / issue-72076.stderr
1 error[E0308]: mismatched types
2   --> $DIR/issue-72076.rs:3:23
3    |
4 LL |     fn f() -> Self::S {}
5    |                       ^^ expected associated type, found `()`
6    |
7    = note: expected associated type `<Self as X>::S`
8                     found unit type `()`
9    = help: consider constraining the associated type `<Self as X>::S` to `()` or calling a method that returns `<Self as X>::S`
10    = note: for more information, visit https://doc.rust-lang.org/book/ch19-03-advanced-traits.html
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0308`.