]> git.lizzy.rs Git - rust.git/blob - src/test/ui/definition-reachable/auxiliary/nested-fn-macro.rs
Add 'library/portable-simd/' from commit '1ce1c645cf27c4acdefe6ec8a11d1f0491954a99'
[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 }