]> git.lizzy.rs Git - rust.git/blob - tests/ui/crashes/shadow.rs
Auto merge of #6298 - JohnTitor:fix-example, r=llogiq
[rust.git] / tests / ui / crashes / shadow.rs
1 fn main() {
2     let x: [i32; {
3         let u = 2;
4         4
5     }] = [2; { 4 }];
6 }