We were previously telling people to write what was already there, instead of removal.
```
error[E0229]: associated item constraints are not allowed here
--> $DIR/E0229.rs:13:25
|
LL | fn baz<I>(x: &<I as Foo<A = Bar>>::A) {}
| ^^^^^^^ associated item constraint not allowed here
|
help: consider removing this associated item binding
|
LL - fn baz<I>(x: &<I as Foo<A = Bar>>::A) {}
LL + fn baz<I>(x: &<I as Foo>::A) {}
|
```
12 lines
362 B
Plaintext
12 lines
362 B
Plaintext
error[E0432]: unresolved import `inner`
|
|
--> $DIR/ice-unresolved-import-100241.rs:9:13
|
|
|
|
|
LL | pub use inner::S;
|
|
| ^^^^^ maybe a missing crate `inner`?
|
|
|
|
|
= help: consider adding `extern crate inner` to use the `inner` crate
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0432`.
|