#![feature(associated_type_defaults)] pub struct C {a:AType} pub trait A { type B = C; //~^ ERROR: associated type `anything_here_kills_it` not found for `Self` } fn main() {}