https://github.com/shader-slang/slang
Raw File
Tip revision: f3aba255f6d69ddbf255b33d0eb0f391908e60a8 authored by Yong He on 13 July 2023, 02:55:41 UTC
Pool inst worklists and hashsets to avoid rehashing. (#2982)
Tip revision: f3aba25
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