about summary refs log tree commit diff
path: root/tests/ui/proc-macro/out-of-line-mod.rs
blob: efe9588bef667659773a66c2201920527a6c835a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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() {}