]> git.lizzy.rs Git - rust.git/blob - tests/ui/array-slice-vec/new-style-fixed-length-vec.rs
Rollup merge of #106715 - BoxyUwU:new_solver_triagebot, r=lcnr
[rust.git] / tests / ui / array-slice-vec / new-style-fixed-length-vec.rs
1 // run-pass
2
3 static FOO: [isize; 3] = [1, 2, 3];
4
5 pub fn main() {
6     println!("{} {} {}", FOO[0], FOO[1], FOO[2]);
7 }