mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
13 lines
212 B
Rust
13 lines
212 B
Rust
//@ run-pass
|
|
//@ aux-build:macro-only-syntax.rs
|
|
|
|
#![feature(proc_macro_hygiene)]
|
|
|
|
extern crate macro_only_syntax;
|
|
|
|
#[macro_only_syntax::expect_unsafe_mod]
|
|
unsafe mod m {
|
|
pub unsafe mod inner;
|
|
}
|
|
|
|
fn main() {}
|