]> git.lizzy.rs Git - rust.git/blob - src/test/ui/resolve/use_suggestion.rs
Rollup merge of #87180 - notriddle:notriddle/sidebar-keyboard-mobile, r=GuillaumeGomez
[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 }