summaryrefslogtreecommitdiffstats
path: root/tests/ui-toml/array_size_threshold/array_size_threshold.rs
blob: 7f623c7a9ec5499242a63ea705e06a09c1e77c71 (plain)
1
2
3
4
5
6
7
8
9
10
#![allow(unused)]
#![warn(clippy::large_const_arrays, clippy::large_stack_arrays)]

const ABOVE: [u8; 11] = [0; 11];
const BELOW: [u8; 10] = [0; 10];

fn main() {
    let above = [0u8; 11];
    let below = [0u8; 10];
}