yum-mirror/slang

Making it easier to work with shaders

git clone https://git.yummers.dev/yum-mirror/slang

Yong HeDiagnose for invalid decl nesting + namespace lookup fixes. (#3397)ec0224edc

master
88 B10 linesraw
1module a;
2
3__include a1;
4
5namespace ns2
6{
7    public int f() { return 1; }
8}
9
10using ns;