blob: 1c0d3b4b964d6e23408e558d4bc94ef43d63fa74 (
plain)
1
2
3
4
5
6
|
extern crate self; //~ ERROR `extern crate self;` requires renaming
#[macro_use] //~ ERROR `#[macro_use]` is not supported on `extern crate self`
extern crate self as foo;
fn main() {}
|