1 #![allow(clippy::no_effect)] 2 main()3 fn main() { 4 const CONSTANT: usize = 8; 5 [1; 1 % CONSTANT]; 6 } 7