]> git.proxmox.com Git - rustc.git/blame - src/test/ui/inference/need_type_info/concrete-impl.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / inference / need_type_info / concrete-impl.rs
CommitLineData
923072b8
FG
1trait Ambiguous<A> {
2 fn method() {}
3}
4
5struct One;
6struct Two;
7struct Struct;
8
9impl Ambiguous<One> for Struct {}
10impl Ambiguous<Two> for Struct {}
11
12fn main() {
13 <Struct as Ambiguous<_>>::method();
14 //~^ ERROR type annotations needed
15 //~| ERROR type annotations needed
16}