rust/tests/ui/suggestions/issue-103646.rs
2025-04-07 19:13:31 +03:00

12 lines
199 B
Rust

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() {}