]> git.proxmox.com Git - rustc.git/blame - src/test/ui/resolve/use_suggestion.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / resolve / use_suggestion.rs
CommitLineData
f035d41b
XL
1fn 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}