2024-02-16 20:02:50 +00:00
|
|
|
//@ run-pass
|
|
|
|
//@ aux-build:macro-only-syntax.rs
|
2020-08-23 10:42:19 +00:00
|
|
|
|
|
|
|
#![feature(proc_macro_hygiene)]
|
|
|
|
|
|
|
|
extern crate macro_only_syntax;
|
|
|
|
|
|
|
|
#[macro_only_syntax::expect_unsafe_mod]
|
|
|
|
unsafe mod m {
|
|
|
|
pub unsafe mod inner;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|