2018-10-26 01:39:47 +03:00
|
|
|
error: `extern crate self;` requires renaming
|
2019-01-07 07:09:17 -08:00
|
|
|
--> $DIR/extern-crate-self-fail.rs:1:1
|
2018-10-26 01:39:47 +03:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | extern crate self;
|
2021-11-26 21:39:44 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: rename the `self` crate to be able to import it
|
|
|
|
|
|
|
|
|
LL | extern crate self as name;
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2018-10-26 01:39:47 +03:00
|
|
|
|
2020-01-10 14:57:36 +00:00
|
|
|
error: `#[macro_use]` is not supported on `extern crate self`
|
2019-01-07 07:09:17 -08:00
|
|
|
--> $DIR/extern-crate-self-fail.rs:3:1
|
2018-10-26 01:39:47 +03:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | #[macro_use]
|
2018-10-26 01:39:47 +03:00
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|