https://github.com/shader-slang/slang
Raw File
Tip revision: 89c1fd0dd1581221f583653a9dfa6d1cf990577c authored by Yong He on 03 June 2024, 21:12:48 UTC
Fix performance issue in source-map (#4261)
Tip revision: 89c1fd0
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