summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/large_const_arrays.stderr
blob: 3fb0acbca67de8225e1df60c6ba873cedd6fdc82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
error: large array defined as const
  --> $DIR/large_const_arrays.rs:12:1
   |
LL | pub(crate) const FOO_PUB_CRATE: [u32; 1_000_000] = [0u32; 1_000_000];
   | ^^^^^^^^^^^-----^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |            |
   |            help: make this a static item: `static`
   |
   = note: `-D clippy::large-const-arrays` implied by `-D warnings`

error: large array defined as const
  --> $DIR/large_const_arrays.rs:13:1
   |
LL | pub const FOO_PUB: [u32; 1_000_000] = [0u32; 1_000_000];
   | ^^^^-----^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |     |
   |     help: make this a static item: `static`

error: large array defined as const
  --> $DIR/large_const_arrays.rs:14:1
   |
LL | const FOO: [u32; 1_000_000] = [0u32; 1_000_000];
   | -----^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   | |
   | help: make this a static item: `static`

error: large array defined as const
  --> $DIR/large_const_arrays.rs:23:5
   |
LL |     pub const BAR_PUB: [u32; 1_000_000] = [0u32; 1_000_000];
   |     ^^^^-----^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |         |
   |         help: make this a static item: `static`

error: large array defined as const
  --> $DIR/large_const_arrays.rs:24:5
   |
LL |     const BAR: [u32; 1_000_000] = [0u32; 1_000_000];
   |     -----^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |     |
   |     help: make this a static item: `static`

error: large array defined as const
  --> $DIR/large_const_arrays.rs:25:5
   |
LL |     pub const BAR_STRUCT_PUB: [S; 5_000] = [S { data: [0; 32] }; 5_000];
   |     ^^^^-----^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |         |
   |         help: make this a static item: `static`

error: large array defined as const
  --> $DIR/large_const_arrays.rs:26:5
   |
LL |     const BAR_STRUCT: [S; 5_000] = [S { data: [0; 32] }; 5_000];
   |     -----^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |     |
   |     help: make this a static item: `static`

error: large array defined as const
  --> $DIR/large_const_arrays.rs:27:5
   |
LL |     pub const BAR_S_PUB: [Option<&str>; 200_000] = [Some("str"); 200_000];
   |     ^^^^-----^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |         |
   |         help: make this a static item: `static`

error: large array defined as const
  --> $DIR/large_const_arrays.rs:28:5
   |
LL |     const BAR_S: [Option<&str>; 200_000] = [Some("str"); 200_000];
   |     -----^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |     |
   |     help: make this a static item: `static`

error: aborting due to 9 previous errors