1 2 3 4 5 6 7 8 9
#[lang = "sized"] pub trait Sized {} struct Foo<A = f32>(A); fn main() { let a: Foo; a = Foo(123f32); }