mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
77 lines
2.7 KiB
Text
77 lines
2.7 KiB
Text
error: large array defined as const
|
|
--> tests/ui/large_const_arrays.rs:10: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`
|
|
= help: to override `-D warnings` add `#[allow(clippy::large_const_arrays)]`
|
|
|
|
error: large array defined as const
|
|
--> tests/ui/large_const_arrays.rs:11: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
|
|
--> tests/ui/large_const_arrays.rs:12: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
|
|
--> tests/ui/large_const_arrays.rs:21: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
|
|
--> tests/ui/large_const_arrays.rs:22: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
|
|
--> tests/ui/large_const_arrays.rs:23: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
|
|
--> tests/ui/large_const_arrays.rs:24: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
|
|
--> tests/ui/large_const_arrays.rs:25: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
|
|
--> tests/ui/large_const_arrays.rs:26: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
|
|
|