about summary refs log tree commit diff
path: root/tests/ui/ufcs/bad-builder.rs
blob: 350c96acca08b7b22928503b3d85a8f851662401 (plain)
1
2
3
4
5
6
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() {}