Files
rust/tests/ui/ufcs/bad-builder.rs
T
2026-03-28 16:18:11 +09:00

7 lines
171 B
Rust

fn hello<Q>() -> Vec<Q> {
Vec::<Q>::mew()
//~^ ERROR no associated function or constant named `mew` found for struct `Vec<Q>` in the current scope
}
fn main() {}