summaryrefslogtreecommitdiffstats
path: root/tests/language-feature/namespaces/namespace-include/b.slang
blob: 95f8b388a9f25ed97e208ad208e595d2cbf59f55 (plain)
1
2
3
4
5
6
7
8
9
10
11
implementing a;

import m;

namespace ns1
{
namespace ns2
{
    int k() { return f() + g(); } // should be able to find ns1::ns2::f in m.
}
}