trait HasAssoc { type Assoc; } fn hasassoc>() {} //~^ WARN relaxing a default bound trait NoAssoc {} fn noassoc>() {} //~^ WARN relaxing a default bound //~| ERROR associated type `Missing` not found for `NoAssoc` fn main() {}