https://github.com/shader-slang/slang
Raw File
Tip revision: cb610113605f62e784b63012b31b751acb6fac72 authored by skallweitNV on 27 June 2024, 15:35:17 UTC
Add API for querying dependency files on IModule (#4493)
Tip revision: cb61011
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