]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/traits/bound/on-structs-and-enums-in-impls.stderr
Auto merge of #101017 - JohnTitor:rollup-73f2fhb, r=JohnTitor
[rust.git] / src / test / ui / traits / bound / on-structs-and-enums-in-impls.stderr
index 47bab6c375f7a48116e68fe50ae43d545846aff9..8a43742260bb2230a328a5460c93ae893575f724 100644 (file)
@@ -1,11 +1,14 @@
 error[E0277]: the trait bound `u16: Trait` is not satisfied
   --> $DIR/on-structs-and-enums-in-impls.rs:20:6
    |
-LL | struct Foo<T:Trait> {
-   |              ----- required by this bound in `Foo`
-...
 LL | impl PolyTrait<Foo<u16>> for Struct {
    |      ^^^^^^^^^^^^^^^^^^^ the trait `Trait` is not implemented for `u16`
+   |
+note: required by a bound in `Foo`
+  --> $DIR/on-structs-and-enums-in-impls.rs:3:14
+   |
+LL | struct Foo<T:Trait> {
+   |              ^^^^^ required by this bound in `Foo`
 
 error: aborting due to previous error