mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 15:32:06 +00:00
14 lines
210 B
Rust
14 lines
210 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() {}
|