trait Cat { fn nya() {} } fn uwu(c: T) { c.nya(); //~^ ERROR no method named `nya` found for type parameter `T` in the current scope //~| Suggestion T::nya() } fn main() {}