rust/tests/ui/imports/extern-crate-self/extern-crate-self-macro-item.rs
2023-01-11 09:32:08 +00:00

13 lines
247 B
Rust

// build-pass (FIXME(62277): could be check-pass?)
// Test that `extern crate self;` is accepted
// syntactically as an item for use in a macro.
macro_rules! accept_item { ($x:item) => {} }
accept_item! {
extern crate self;
}
fn main() {}