Closed
Description
From: src/test/compile-fail/E0221.rs
Error E0221 needs a span_label, updating it from:
error[E0221]: ambiguous associated type `A` in bounds of `Self`
--> src/test/compile-fail/E0221.rs:21:16
|
21 | let _: Self::A; //~ ERROR E0221
| ^^^^^^^
|
note: associated type `Self` could derive from `Foo`
--> src/test/compile-fail/E0221.rs:21:16
|
21 | let _: Self::A; //~ ERROR E0221
| ^^^^^^^
note: associated type `Self` could derive from `Bar`
--> src/test/compile-fail/E0221.rs:21:16
|
21 | let _: Self::A; //~ ERROR E0221
| ^^^^^^^
To:
error[E0221]: ambiguous associated type `A` in bounds of `Self`
--> src/test/compile-fail/E0221.rs:21:16
|
21 | let _: Self::A; //~ ERROR E0221
| ^^^^^^^ ambiguous associated type `A`
|
note: associated type `Self` could derive from `Foo`
--> src/test/compile-fail/E0221.rs:21:16
|
21 | let _: Self::A; //~ ERROR E0221
| ^^^^^^^
note: associated type `Self` could derive from `Bar`
--> src/test/compile-fail/E0221.rs:21:16
|
21 | let _: Self::A; //~ ERROR E0221
| ^^^^^^^