blob: d8b06d663affcb159b43dff3a79e6bf4503dcfa0 [file] [log] [blame]
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() {}