https://github.com/shader-slang/slang
Raw File
Tip revision: 4ae58a720e6f8d63ff5c74fd14f630137dfd0c0c authored by ArielG-NV on 19 July 2024, 18:52:25 UTC
Fix for invalid swizzle causing crash (#4690)
Tip revision: 4ae58a7
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