summaryrefslogtreecommitdiffstats
path: root/tests/language-feature/namespaces/namespace-include/m.slang
blob: 4eb3db527d39642acf000eb7857dd7f6b0ce000f (plain)
1
2
3
4
5
6
7
8
9
10
11
module m;

__include m2;

namespace ns1
{
namespace ns2
{
    public int f() { return 1; }
}
}