https://github.com/shader-slang/slang
Raw File
Tip revision: 1b89f78cd1762aa08402bd656e807b66833b11d0 authored by ArielG-NV on 16 May 2024, 04:04:12 UTC
Capabilities System, CapabilitySet Logic Overhaul (#4145)
Tip revision: 1b89f78
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