mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
18 lines
521 B
Plaintext
18 lines
521 B
Plaintext
error[E0283]: type annotations needed
|
|
--> $DIR/issue-29147.rs:22:13
|
|
|
|
|
LL | let _ = <S5<_>>::xxx;
|
|
| ^^^^^^^^^^^^ cannot infer type for struct `S5<_>`
|
|
|
|
|
note: multiple `impl`s satisfying `S5<_>: Foo` found
|
|
--> $DIR/issue-29147.rs:18:1
|
|
|
|
|
LL | impl Foo for S5<u32> { fn xxx(&self) {} }
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
LL | impl Foo for S5<u64> { fn xxx(&self) {} }
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0283`.
|