summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/const-blocks/trait-error.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/consts/const-blocks/trait-error.stderr')
-rw-r--r--tests/ui/consts/const-blocks/trait-error.stderr6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/ui/consts/const-blocks/trait-error.stderr b/tests/ui/consts/const-blocks/trait-error.stderr
index 06fa4b0b1..858ffa820 100644
--- a/tests/ui/consts/const-blocks/trait-error.stderr
+++ b/tests/ui/consts/const-blocks/trait-error.stderr
@@ -10,9 +10,13 @@ note: required for `Foo<String>` to implement `Copy`
LL | #[derive(Copy, Clone)]
| ^^^^ unsatisfied trait bound introduced in this `derive` macro
= note: the `Copy` trait is required because this value will be copied for each element of the array
- = help: consider creating a new `const` item and initializing it with the result of the function call to be used in the repeat position, like `const VAL: Type = const_fn();` and `let x = [VAL; 42];`
= help: create an inline `const` block, see RFC #2920 <https://github.com/rust-lang/rfcs/pull/2920> for more information
= note: this error originates in the derive macro `Copy` (in Nightly builds, run with -Z macro-backtrace for more info)
+help: consider creating a new `const` item and initializing it with the result of the function call to be used in the repeat position
+ |
+LL ~ const ARRAY_REPEAT_VALUE: Foo<String> = Foo(String::new());
+LL ~ [ARRAY_REPEAT_VALUE; 4];
+ |
error: aborting due to previous error