]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/structs/struct-path-alias-bounds.stderr
New upstream version 1.55.0+dfsg1
[rustc.git] / src / test / ui / structs / struct-path-alias-bounds.stderr
index cea3d5d4df35d0a1a0d15c9fbcdc8e025dcda56b..e0a22c2df1aca529b65b67bcf33bf55ddf09b838 100644 (file)
@@ -1,11 +1,14 @@
 error[E0277]: the trait bound `NoClone: Clone` is not satisfied
   --> $DIR/struct-path-alias-bounds.rs:9:13
    |
-LL | struct S<T: Clone> { a: T }
-   | ------------------ required by `S`
-...
 LL |     let s = A { a: NoClone };
    |             ^ the trait `Clone` is not implemented for `NoClone`
+   |
+note: required by `S`
+  --> $DIR/struct-path-alias-bounds.rs:3:1
+   |
+LL | struct S<T: Clone> { a: T }
+   | ^^^^^^^^^^^^^^^^^^
 
 error: aborting due to previous error