]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/use-colon-as-mod-sep.stderr
Account for ADT bodies and struct expressions
[rust.git] / src / test / ui / parser / use-colon-as-mod-sep.stderr
1 error: expected `::`, found `:`
2   --> $DIR/use-colon-as-mod-sep.rs:3:17
3    |
4 LL | use std::process:Command;
5    |                 ^ help: use double colon
6    |
7    = note: import paths are delimited using `::`
8
9 error: expected `::`, found `:`
10   --> $DIR/use-colon-as-mod-sep.rs:5:8
11    |
12 LL | use std:fs::File;
13    |        ^ help: use double colon
14
15 error: expected `::`, found `:`
16   --> $DIR/use-colon-as-mod-sep.rs:7:8
17    |
18 LL | use std:collections:HashMap;
19    |        ^ help: use double colon
20
21 error: expected `::`, found `:`
22   --> $DIR/use-colon-as-mod-sep.rs:7:20
23    |
24 LL | use std:collections:HashMap;
25    |                    ^ help: use double colon
26
27 error: aborting due to 4 previous errors
28