2021-10-20 08:56:10 -05:00
|
|
|
error[E0659]: `std` is ambiguous
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/ambiguity.rs:5:5
|
2018-08-11 03:13:57 -05:00
|
|
|
|
|
2018-11-04 16:11:59 -06:00
|
|
|
LL | use std::io;
|
|
|
|
| ^^^ ambiguous name
|
|
|
|
|
|
2021-10-20 08:56:10 -05:00
|
|
|
= note: ambiguous because of multiple potential import sources
|
2019-08-03 18:07:35 -05:00
|
|
|
= note: `std` could refer to a built-in crate
|
|
|
|
= help: use `::std` to refer to this crate unambiguously
|
2018-11-04 16:11:59 -06:00
|
|
|
note: `std` could also refer to the module defined here
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/ambiguity.rs:8:1
|
2018-11-04 16:11:59 -06:00
|
|
|
|
|
2018-08-11 03:13:57 -05:00
|
|
|
LL | / mod std {
|
|
|
|
LL | | pub struct io;
|
|
|
|
LL | | }
|
2018-11-04 16:11:59 -06:00
|
|
|
| |_^
|
2018-11-25 07:08:43 -06:00
|
|
|
= help: use `crate::std` to refer to this module unambiguously
|
2018-08-11 03:13:57 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-11-04 16:11:59 -06:00
|
|
|
For more information about this error, try `rustc --explain E0659`.
|