https://github.com/shader-slang/slang
Raw File
Tip revision: bd01bd3f4b8eecbfb924b8eb4090694e44e8166c authored by kaizhangNV on 02 July 2024, 03:06:58 UTC
Fix the type error in kIROp_RWStructuredBufferLoad (#4523)
Tip revision: bd01bd3
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