rust/tests/ui/proc-macro/helper-attr-blocked-by-import.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
384 B
Rust
Raw Normal View History

// build-pass (FIXME(62277): could be check-pass?)
// aux-build:test-macros.rs
#[macro_use(Empty)]
extern crate test_macros;
use self::one::*;
use self::two::*;
mod empty_helper {}
mod one {
use empty_helper;
#[derive(Empty)]
#[empty_helper]
struct One;
}
mod two {
use empty_helper;
#[derive(Empty)]
#[empty_helper]
struct Two;
}
fn main() {}