]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/wf/wf-const-type.stderr
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / src / test / ui / wf / wf-const-type.stderr
index d2e68548805b7d677d8325ce5acaf4982cb3218d..5a6d66ee7fa7c4ec1551aa35b937115528a3aa2c 100644 (file)
@@ -1,13 +1,15 @@
 error[E0277]: the trait bound `NotCopy: Copy` is not satisfied
   --> $DIR/wf-const-type.rs:10:12
    |
-LL | struct IsCopy<T:Copy> { t: T }
-   |                 ---- required by this bound in `IsCopy`
-...
 LL | const FOO: IsCopy<Option<NotCopy>> = IsCopy { t: None };
    |            ^^^^^^^^^^^^^^^^^^^^^^^ the trait `Copy` is not implemented for `NotCopy`
    |
    = note: required because of the requirements on the impl of `Copy` for `Option<NotCopy>`
+note: required by a bound in `IsCopy`
+  --> $DIR/wf-const-type.rs:7:17
+   |
+LL | struct IsCopy<T:Copy> { t: T }
+   |                 ^^^^ required by this bound in `IsCopy`
 
 error: aborting due to previous error