struct GenericAssocMethod(T); impl GenericAssocMethod { fn default_hello() {} } fn main() { let x = GenericAssocMethod(33); x.default_hello(); //~^ ERROR no method named `default_hello` found }