mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
199 B
Rust
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() {}
|