2018-10-25 17:39:47 -05:00
|
|
|
error: `extern crate self;` requires renaming
|
2019-01-07 09:09:17 -06:00
|
|
|
--> $DIR/extern-crate-self-fail.rs:1:1
|
2018-10-25 17:39:47 -05:00
|
|
|
|
|
|
|
|
LL | extern crate self; //~ ERROR `extern crate self;` requires renaming
|
|
|
|
| ^^^^^^^^^^^^^^^^^^ help: try: `extern crate self as name;`
|
|
|
|
|
|
|
|
error: `macro_use` is not supported on `extern crate self`
|
2019-01-07 09:09:17 -06:00
|
|
|
--> $DIR/extern-crate-self-fail.rs:3:1
|
2018-10-25 17:39:47 -05:00
|
|
|
|
|
|
|
|
LL | #[macro_use] //~ ERROR `macro_use` is not supported on `extern crate self`
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|