https://github.com/shader-slang/slang
Raw File
Tip revision: b490414975d9336d112f681a986d116ab8616303 authored by Yong He on 02 May 2024, 04:38:24 UTC
Delete out-of-date assert. (#4079)
Tip revision: b490414
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