summaryrefslogtreecommitdiffstats
path: root/tests/language-feature/namespaces/namespace-using/a.slang
blob: 25c606c6e13c2a0efe17183ffb1c479a9e4a33eb (plain)
1
2
3
4
5
6
7
8
9
10
module a;

__include a1;

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

using ns;