]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/trait-impl-bound-suggestions.stderr
Rollup merge of #89468 - FabianWolff:issue-89358, r=jackh726
[rust.git] / src / test / ui / trait-impl-bound-suggestions.stderr
index c9dad2ef896f6a0159d0ccaee85110b227d2af1a..38679679cf935551c9b155249d60eba84843949c 100644 (file)
@@ -1,12 +1,14 @@
 error[E0277]: the trait bound `X: Copy` is not satisfied
   --> $DIR/trait-impl-bound-suggestions.rs:14:52
    |
-LL | struct ConstrainedStruct<X: Copy> {
-   |                             ---- required by this bound in `ConstrainedStruct`
-...
 LL |     fn return_the_constrained_type(&self, x: X) -> ConstrainedStruct<X> {
    |                                                    ^^^^^^^^^^^^^^^^^^^^ the trait `Copy` is not implemented for `X`
    |
+note: required by a bound in `ConstrainedStruct`
+  --> $DIR/trait-impl-bound-suggestions.rs:8:29
+   |
+LL | struct ConstrainedStruct<X: Copy> {
+   |                             ^^^^ required by this bound in `ConstrainedStruct`
 help: consider further restricting type parameter `X`
    |
 LL | trait InsufficientlyConstrainedGeneric<X=()> where X: std::marker::Copy {