Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
suggestions
/
issue-103646.rs
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
()
{}