https://github.com/shader-slang/slang
Raw File
Tip revision: 048c5c32d27538de7a935469c9f0d9b494622c5b authored by Jay Kwak on 29 June 2024, 02:55:42 UTC
Adding a note about the keyword, class. (#4503)
Tip revision: 048c5c3
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