https://github.com/shader-slang/slang
Raw File
Tip revision: c3061afffdc078914cc522538749c6e0c5e36f65 authored by Ellie Hermaszewska on 11 July 2024, 12:51:38 UTC
Fix missing include for static slang (#4614)
Tip revision: c3061af
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