about summary refs log tree commit diff
path: root/tests/ui/consts/const-blocks/const-block-in-array-size.rs
blob: ecab24322869c2d7ac1e8bdf76e028cc1d01fa0d (plain)
1
2
3
4
5
//@ check-pass

type A = [u32; const { 2 }];

fn main() {}