summary refs log tree commit diff
path: root/src/test/ui/issues/issue-29147.stderr
blob: f00d5d32bbf28d6bc40fcfdb732e3cdebd512587 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error[E0283]: type annotations needed
  --> $DIR/issue-29147.rs:21:13
   |
LL |     let _ = <S5<_>>::xxx;
   |             ^^^^^^^^^^^^ cannot infer type for struct `S5<_>`
   |
   = note: cannot satisfy `S5<_>: Foo`
note: required by `Foo::xxx`
  --> $DIR/issue-29147.rs:10:13
   |
LL | trait Foo { fn xxx(&self); }
   |             ^^^^^^^^^^^^^^

error: aborting due to previous error

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