]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-prop-ice.rs
48c4b7da942e4a8b33e35e0e8aac36d9094271dd
[rust.git] / src / test / ui / consts / const-prop-ice.rs
1 fn main() {
2     [0; 3][3u64 as usize]; //~ ERROR the len is 3 but the index is 3
3     //~| ERROR this expression will panic at runtime
4 }