]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0223.rs
Auto merge of #67758 - ssomers:testing_range, r=Mark-Simulacrum
[rust.git] / src / test / ui / error-codes / E0223.rs
1 trait MyTrait { type X; }
2
3 fn main() {
4     let foo: MyTrait::X;
5     //~^ ERROR ambiguous associated type
6 }