https://github.com/shader-slang/slang
Raw File
Tip revision: 6e1233d763fffa2f5a556f54d1deaaa12d384b0d authored by tgrimesnv on 16 April 2024, 19:25:28 UTC
glsl intrinsic functional test
Tip revision: 6e1233d
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