https://github.com/shader-slang/slang
Raw File
Tip revision: e712ebd93aa9a2845bde3ea541aaa7cd415548b7 authored by Yong He on 02 November 2023, 05:49:30 UTC
Add mnemonic parsing for `intrinsic_type` modifier. (#3306)
Tip revision: e712ebd
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