``` rust #![feature(associated_types)] trait Wub { type Zoop; } trait Flim: Wub {} fn main() {} ``` ``` <anon>:7:13: 7:16 error: associated types may not be referenced here <anon>:7 trait Flim: Wub {} ^~~ ```