summaryrefslogtreecommitdiffstats
path: root/src/test/ui/did_you_mean/use_instead_of_import.stderr
blob: 2aac8f68c5ebd96c849385ba49263a33051af941 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
error: expected item, found `import`
  --> $DIR/use_instead_of_import.rs:3:1
   |
LL | import std::{
   | ^^^^^^ help: items are imported using the `use` keyword

error: expected item, found `require`
  --> $DIR/use_instead_of_import.rs:9:1
   |
LL | require std::time::Duration;
   | ^^^^^^^ help: items are imported using the `use` keyword

error: expected item, found `include`
  --> $DIR/use_instead_of_import.rs:12:1
   |
LL | include std::time::Instant;
   | ^^^^^^^ help: items are imported using the `use` keyword

error: expected item, found `using`
  --> $DIR/use_instead_of_import.rs:15:5
   |
LL | pub using std::io;
   |     ^^^^^ help: items are imported using the `use` keyword

error: aborting due to 4 previous errors