mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 16:54:01 +00:00
14 lines
212 B
Rust
14 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() {}
|