]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/ctfe/const-block-non-item-statement-3.rs
90295414d3efc73c1781d00b14eb1b4576e011cf
[rust.git] / src / test / run-pass / ctfe / const-block-non-item-statement-3.rs
1 // run-pass
2 #![allow(dead_code)]
3
4 #![feature(const_let)]
5
6 type Array = [u32; {  let x = 2; 5 }];
7
8 pub fn main() {}