#[lang = "sized"] pub trait Sized {} struct Foo(A, B); fn main() { let a: Foo; a = Foo::(true, (false, true)); let b: (bool, bool); b = a.1; }