// check-pass #![feature(const_generics)] #![allow(incomplete_features)] struct Foo {} type MyFoo = Foo<{ [] }>; fn main() { let _ = Foo::<{ [] }> {}; }