https://github.com/shader-slang/slang
Raw File
Tip revision: cf29c032ad9efce4dedaad9c3729dcd56e4a31fe authored by Yong He on 13 July 2024, 00:14:37 UTC
fix macos release
Tip revision: cf29c03
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