blob: 5bf058344c705c83e28980743fa092c94147ce81 [file] [edit]
error[E0283]: type annotations needed
--> $DIR/method-on-deeply-nested-struct-perf-2.rs:25:14
|
LL | let _ = <S5<_>>::xxx;
| ^^^^^ cannot infer type for struct `S5<_>`
|
note: multiple `impl`s satisfying `S5<_>: Foo` found
--> $DIR/method-on-deeply-nested-struct-perf-2.rs:21:1
|
LL | impl Foo for S5<u32> { fn xxx(&self) {} }
| ^^^^^^^^^^^^^^^^^^^^
LL | impl Foo for S5<u64> { fn xxx(&self) {} }
| ^^^^^^^^^^^^^^^^^^^^
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0283`.