1 #![feature(associated_type_defaults)]
2 
3 pub struct C<AType: A> {a:AType}
4 
5 pub trait A {
6     type B = C<Self::anything_here_kills_it>;
7     //~^ ERROR: associated type `anything_here_kills_it` not found for `Self`
8 }
9 
main()10 fn main() {}
11