blob: 73c1419a8a6e64acef9a2ab3a6554eae1fe93556 [file] [log] [blame]
#![feature(lang_items)]
#[lang = "sized"]
trait Sized {}
struct Foo<const N: usize>;
struct Wrapper<T>(T);
fn main() -> i32 {
let _: Wrapper<Foo<3>> = Wrapper(Foo::<3> {});
0
}