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