]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/use-colon-as-mod-sep.rs
Auto merge of #103600 - compiler-errors:early-binder-nits, r=spastorino
[rust.git] / src / test / ui / parser / use-colon-as-mod-sep.rs
1 // Recover from using a colon as a path separator.
2
3 use std::process:Command;
4 //~^ ERROR expected `::`, found `:`
5 use std:fs::File;
6 //~^ ERROR expected `::`, found `:`
7 use std:collections:HashMap;
8 //~^ ERROR expected `::`, found `:`
9 //~| ERROR expected `::`, found `:`
10
11 fn main() { }