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

error: aborting due to previous error

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