mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
6 lines
167 B
Rust
6 lines
167 B
Rust
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() {}
|