summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/type-ascription-instead-of-path.stderr
blob: 518660cfa168690a429e5903274773243760f3f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error[E0433]: failed to resolve: use of undeclared crate or module `io`
  --> $DIR/type-ascription-instead-of-path.rs:2:9
   |
LL |     std:io::stdin();
   |         ^^ use of undeclared crate or module `io`

error[E0423]: expected value, found crate `std`
  --> $DIR/type-ascription-instead-of-path.rs:2:5
   |
LL |     std:io::stdin();
   |     ^^^- help: maybe you meant to write a path separator here: `::`
   |     |
   |     not a value

error: aborting due to 2 previous errors

Some errors have detailed explanations: E0423, E0433.
For more information about an error, try `rustc --explain E0423`.