yum-mirror/slang
Making it easier to work with shaders
git clone https://git.yummers.dev/yum-mirror/slang
4d517794e
master
1//TEST:LANG_SERVER(filecheck=CHECK): 2interface IBar{} 3interface IFoo 4{ 5 int eval(); 6 void execute<int z,T:IBar>(int x); 7} 8 9struct Impl : IFoo 10{ 11//COMPLETE:12,14 12 override 13} 14 15//CHECK-DAG: int eval 16//CHECK-DAG: void execute<int z, T>