https://github.com/shader-slang/slang
Raw File
Tip revision: 8e44968be297c0fa0ab00510a5e5922630d8c401 authored by Yong He on 20 September 2022, 00:08:25 UTC
Fix d3d12 implementation of `uploadBufferData`. (#2402)
Tip revision: 8e44968
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