https://github.com/shader-slang/slang
Raw File
Tip revision: 195af97638e59539cd9c14d16338789b6d683f3f authored by Yong He on 12 April 2023, 01:14:49 UTC
Fix missing `f` suffix for float lits in CUDA backend. (#2791)
Tip revision: 195af97
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