about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/crashes/ice-7340.rs
blob: 6c71c232fddb4c8da9d946a80adec3c9718f7bd5 (plain)
1
2
3
4
5
6
7
8
//@ check-pass

#![allow(clippy::no_effect)]

fn main() {
    const CONSTANT: usize = 8;
    [1; 1 % CONSTANT];
}