https://github.com/shader-slang/slang
Raw File
Tip revision: 2220d26c24b259075182672be22e1494b4affc95 authored by Yong He on 04 May 2024, 04:56:59 UTC
Fix macos release script. (#4106)
Tip revision: 2220d26
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