| 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:12: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:14:1 |
| | |
| LL | const FOO_COMPUTED: [u32; 1_000 * 100] = [0u32; 1_000 * 100]; |
| | -----^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| | | |
| | help: make this a static item: `static` |
| |
| error: large array defined as const |
| --> tests/ui/large_const_arrays.rs:16: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:27: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:29: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:31: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:33: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:35: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:37:5 |
| | |
| LL | const BAR_S: [Option<&str>; 200_000] = [Some("str"); 200_000]; |
| | -----^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| | | |
| | help: make this a static item: `static` |
| |
| error: aborting due to 10 previous errors |
| |