#[lang = "sized"] pub trait Sized {} struct Foo(A, B); impl Foo { fn test(a: X) -> X { a } } fn main() { let a; a = Foo::test::<_>(123); let b; b = Foo::test::(true); let c; c = Foo::test(456f32); }