// check-fail trait Trait { type Assoc; } impl<'a> Trait for &'a () { type Assoc = &'a (); } struct MyTuple::Assoc>(T, U); fn test_tuple(x: &(), y: &()) { MyTuple::<_>((), x); //~^ ERROR let _: MyTuple::<_> = MyTuple((), y); //~^ ERROR } struct MyStruct::Assoc> { val: (T, U), } fn test_struct(x: &(), y: &()) { MyStruct::<_> { val: ((), x) }; //~^ ERROR let _: MyStruct::<_> = MyStruct { val: ((), y) }; //~^ ERROR } fn main() {}