https://github.com/shader-slang/slang
Raw File
Tip revision: 484c1e618dddf586360c03f90e6c27ece1065acd authored by Sriram Murali on 23 April 2024, 02:14:35 UTC
ForceInline ByteAddressBuffer operations in stdlib (#4003)
Tip revision: 484c1e6
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