]> git.lizzy.rs Git - rust.git/blob - src/test/ui/resolve/use_suggestion.rs
Auto merge of #69890 - lenary:lenary/riscv-frame-pointers, r=hanna-kruppe,Mark-Simulacrum
[rust.git] / src / test / ui / resolve / use_suggestion.rs
1 fn main() {
2     let x1 = HashMap::new(); //~ ERROR failed to resolve
3     let x2 = GooMap::new(); //~ ERROR failed to resolve
4
5     let y1: HashMap; //~ ERROR cannot find type
6     let y2: GooMap; //~ ERROR cannot find type
7 }