https://github.com/shader-slang/slang
Raw File
Tip revision: edb9de817218f8753ab2219fe9e7cd6b1afdd304 authored by kaizhangNV on 27 June 2024, 23:52:23 UTC
Enable upload asset for old glibc build (#4501)
Tip revision: edb9de8
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