summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-blocks/trait-error.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/const-blocks/trait-error.stderr')
-rw-r--r--src/test/ui/consts/const-blocks/trait-error.stderr2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/ui/consts/const-blocks/trait-error.stderr b/src/test/ui/consts/const-blocks/trait-error.stderr
index ece200ad1..b11dd4b80 100644
--- a/src/test/ui/consts/const-blocks/trait-error.stderr
+++ b/src/test/ui/consts/const-blocks/trait-error.stderr
@@ -4,7 +4,7 @@ error[E0277]: the trait bound `String: Copy` is not satisfied
LL | [Foo(String::new()); 4];
| ^^^^^^^^^^^^^^^^^^ the trait `Copy` is not implemented for `String`
|
-note: required because of the requirements on the impl of `Copy` for `Foo<String>`
+note: required for `Foo<String>` to implement `Copy`
--> $DIR/trait-error.rs:1:10
|
LL | #[derive(Copy, Clone)]