https://github.com/shader-slang/slang
Raw File
Tip revision: 753a524be885cf463fa6e60734aa739fcce1396f authored by Dynamitos on 02 June 2024, 20:18:37 UTC
Metal Task Shader payload (#4238)
Tip revision: 753a524
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