Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
proc-macro
/
unsafe-mod.rs
blob: 00ea388af932a17c05df12751482714999841161 [
file
] [
log
] [
blame
] [
edit
]
//@ 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
()
{}