https://github.com/shader-slang/slang
Raw File
Tip revision: 4ae755f0a1f9828284f1bb8de15719a7b94938d6 authored by Yong He on 11 July 2024, 05:41:45 UTC
Revert tag-version header removal.
Tip revision: 4ae755f
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