https://github.com/shader-slang/slang
Raw File
Tip revision: 12ec9b832fc74faba7162e54e04f7f48878ea88e authored by Ellie Hermaszewska on 12 April 2023, 21:01:06 UTC
Downgrade github runner to 20.04 (#2792)
Tip revision: 12ec9b8
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