Sign in
android
/
toolchain
/
rustc
/
cd1aefd586783f162dd848e314bd6991a5ffe033
/
.
/
tests
/
ui
/
proc-macro
/
out-of-line-mod.rs
blob: 658ed6c18e05acace9a36c4beaffa5264ba1996f [
file
] [
log
] [
blame
]
// Out-of-line module is found on the filesystem if passed through a proc macro (issue #58818).
// check-pass
// aux-build:test-macros.rs
#[
macro_use
]
extern
crate test_macros
;
mod
outer
{
identity
!
{
mod
inner
;
}
}
fn
main
()
{}