]> git.lizzy.rs Git - rust.git/blob - tests/ui/resolve/use_suggestion.rs
Rollup merge of #106692 - eggyal:mv-binary_heap.rs-binary_heap/mod.rs, r=Mark-Simulacrum
[rust.git] / tests / 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 }