https://github.com/shader-slang/slang
Raw File
Tip revision: ba6f55ed9481960b4f6c7f0a6b8f1cf7d450c752 authored by Yong He on 24 August 2022, 19:05:19 UTC
Allow `static const` interface requirements. (#2378)
Tip revision: ba6f55e
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