Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
proc-macro
/
out-of-line-mod.rs
blob: efe9588bef667659773a66c2201920527a6c835a [
file
] [
log
] [
blame
]
// Out-of-line module is found on the filesystem if passed through a proc macro (issue #58818).
//@ check-pass
//@ proc-macro: test-macros.rs
#[
macro_use
]
extern
crate test_macros
;
mod
outer
{
identity
!
{
mod
inner
;
}
}
fn
main
()
{}