mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-05 03:23:25 +00:00
7 lines
98 B
Rust
7 lines
98 B
Rust
![]() |
#![allow(clippy::no_effect)]
|
||
|
|
||
|
fn main() {
|
||
|
const CONSTANT: usize = 8;
|
||
|
[1; 1 % CONSTANT];
|
||
|
}
|