https://github.com/shader-slang/slang
Raw File
Tip revision: ee9d398ebfc7c67205a8d5c91834ae4882d0dc9b authored by Yong He on 10 April 2024, 20:38:50 UTC
Delete out of date docs (#3926)
Tip revision: ee9d398
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