Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
tests
/
ui
/
ufcs
/
bad-builder.rs
blob: 350c96acca08b7b22928503b3d85a8f851662401 [
file
] [
log
] [
blame
]
fn
hello
<
Q
>()
->
Vec
<
Q
>
{
Vec
::<
Q
>::
mew
()
//~^ ERROR no function or associated item named `mew` found for struct `Vec<Q>` in the current scope
}
fn
main
()
{}