https://github.com/shader-slang/slang
Raw File
Tip revision: 72f7ea60461df520668de0947f350b85219db577 authored by ArielG-NV on 23 July 2024, 20:54:06 UTC
Fix for `ConstantBuffer<T[...]>` causing a segfault (#4705)
Tip revision: 72f7ea6
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