]> git.lizzy.rs Git - rust.git/blob - tests/ui/parser/use-colon-as-mod-sep.rs
Auto merge of #107688 - lukas-code:projection-with-lifetime, r=jackh726
[rust.git] / tests / 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() { }