https://github.com/shader-slang/slang
Raw File
Tip revision: 8ea3854d94eb1ff213be716a38493d601784810b authored by skallweitNV on 06 June 2024, 16:08:38 UTC
work on gfx metal backend (#4287)
Tip revision: 8ea3854
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