blob: f679640c5dc90103a97db56ca7ee5ada265e68de [file] [log] [blame] [edit]
trait Cat {
fn nya() {}
}
fn uwu<T: Cat>(c: T) {
c.nya();
//~^ ERROR no method named `nya` found for type parameter `T` in the current scope
//~| Suggestion T::nya()
}
fn main() {}