https://github.com/shader-slang/slang
Raw File
Tip revision: b05b126e0975f84e3505b2271e06d567e1c13692 authored by Yong He on 15 August 2023, 00:58:29 UTC
Update target-deps.json (#3103)
Tip revision: b05b126
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