yum-mirror/slang

Making it easier to work with shaders

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

Yong HeDefine proper diagnostic item for two common "unimplemented" cases. (#2296)5bd366fa1

master
126 B10 linesraw
1//TEST:LANG_SERVER:
2
3struct MyType : INotExist{};
4
5void m()
6{
7//HOVER:8,9
8    MyType b;
9    reinterpret<MyType, MyType>(b);
10}