]> git.proxmox.com Git - rustc.git/blame - src/test/ui/suggestions/type-ascription-instead-of-path.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / suggestions / type-ascription-instead-of-path.stderr
CommitLineData
1b1a35ee 1error[E0433]: failed to resolve: use of undeclared crate or module `io`
532ac7d7
XL
2 --> $DIR/type-ascription-instead-of-path.rs:2:9
3 |
4LL | std:io::stdin();
1b1a35ee 5 | ^^ use of undeclared crate or module `io`
532ac7d7 6
416331ca 7error[E0423]: expected value, found crate `std`
532ac7d7
XL
8 --> $DIR/type-ascription-instead-of-path.rs:2:5
9 |
10LL | std:io::stdin();
11 | ^^^- help: maybe you meant to write a path separator here: `::`
12 | |
13 | not a value
14
15error: aborting due to 2 previous errors
16
48663c56 17Some errors have detailed explanations: E0423, E0433.
532ac7d7 18For more information about an error, try `rustc --explain E0423`.