2018-10-25 22:39:47 +00:00
|
|
|
extern crate self; //~ ERROR `extern crate self;` requires renaming
|
|
|
|
|
2020-01-10 14:57:36 +00:00
|
|
|
#[macro_use] //~ ERROR `#[macro_use]` is not supported on `extern crate self`
|
2018-10-25 22:39:47 +00:00
|
|
|
extern crate self as foo;
|
|
|
|
|
|
|
|
fn main() {}
|