You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/test/ui/array-slice-vec/repeat_empty_ok.stderr
+2-6
Original file line number
Diff line number
Diff line change
@@ -1,22 +1,18 @@
1
1
error[E0277]: the trait bound `Header<'_>: Copy` is not satisfied
2
-
--> $DIR/issue-80371.rs:8:19
2
+
--> $DIR/repeat_empty_ok.rs:8:19
3
3
|
4
4
LL | let headers = [Header{value: &[]}; 128];
5
5
| ^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Copy` is not implemented for `Header<'_>`
6
6
|
7
7
= note: the `Copy` trait is required because the repeated element will be copied
8
-
= note: this array initializer can be evaluated at compile-time, see issue #49147 <https://github.com/rust-lang/rust/issues/49147> for more information
9
-
= help: add `#![feature(const_in_array_repeat_expressions)]` to the crate attributes to enable
10
8
11
9
error[E0277]: the trait bound `Header<'_>: Copy` is not satisfied
12
-
--> $DIR/issue-80371.rs:13:19
10
+
--> $DIR/repeat_empty_ok.rs:13:19
13
11
|
14
12
LL | let headers = [Header{value: &[0]}; 128];
15
13
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Copy` is not implemented for `Header<'_>`
16
14
|
17
15
= note: the `Copy` trait is required because the repeated element will be copied
18
-
= note: this array initializer can be evaluated at compile-time, see issue #49147 <https://github.com/rust-lang/rust/issues/49147> for more information
19
-
= help: add `#![feature(const_in_array_repeat_expressions)]` to the crate attributes to enable
0 commit comments