1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
//@ known-bug: #136661 #![allow(unused)] trait Supertrait<T> {} trait Other { fn method(&self) {} } impl WithAssoc for &'static () { type As = (); } trait WithAssoc { type As; } trait Trait<P: WithAssoc>: Supertrait<P::As> { fn method(&self) {} } fn hrtb<T: for<'a> Trait<&'a ()>>() {} pub fn main() {}