https://github.com/shader-slang/slang
Raw File
Tip revision: 1a0bbb53c116e6e5f89ed577803341e6aa1bce82 authored by ArielG-NV on 12 July 2024, 15:46:38 UTC
use `nullptr' for IRStructKey with `IRDerivativeMemberDecoration` (#4623)
Tip revision: 1a0bbb5
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