https://github.com/shader-slang/slang
Raw File
Tip revision: efe110580343521ba6ff61ebb7d0db252598651d authored by Yong He on 24 July 2024, 22:22:04 UTC
Update README.md
Tip revision: efe1105
class-keyword.slang
//DISABLED_TEST:DIAGNOSTIC_TEST:SIMPLE:

// `class` keyword is a reserved keyword in this context, and wso should produce an error.
// It can be used in the form of `enum class` 

class SomeClass
{
    int a;
    int b;
};
back to top