// check-pass #![feature(const_generics)] #![allow(incomplete_features)] struct Const {} type MyConst = Const<{ [] }>; fn main() { let _x = Const::<{ [] }> {}; let _y = MyConst {}; }