]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/type-ascription-instead-of-path.stderr
Rollup merge of #106717 - klensy:typo, r=lcnr
[rust.git] / tests / ui / suggestions / type-ascription-instead-of-path.stderr
1 error[E0433]: failed to resolve: use of undeclared crate or module `io`
2   --> $DIR/type-ascription-instead-of-path.rs:2:9
3    |
4 LL |     std:io::stdin();
5    |         ^^ use of undeclared crate or module `io`
6
7 error[E0423]: expected value, found crate `std`
8   --> $DIR/type-ascription-instead-of-path.rs:2:5
9    |
10 LL |     std:io::stdin();
11    |     ^^^- help: maybe you meant to write a path separator here: `::`
12    |     |
13    |     not a value
14
15 error: aborting due to 2 previous errors
16
17 Some errors have detailed explanations: E0423, E0433.
18 For more information about an error, try `rustc --explain E0423`.