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