]> git.lizzy.rs Git - rust.git/blob - src/test/ui/definition-reachable/auxiliary/nested-fn-macro.rs
Merge commit 'bf1c6f9871f430e284b17aa44059e0d0395e28a6' into clippyup
[rust.git] / src / test / ui / definition-reachable / auxiliary / nested-fn-macro.rs
1 #![feature(decl_macro)]
2
3 mod n {
4     pub(crate) mod p {
5         pub fn f() -> i32 { 12 }
6     }
7 }
8
9 pub macro m() {
10     n::p::f()
11 }