rust/tests/ui/ufcs/bad-builder.rs

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() {}