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