https://github.com/shader-slang/slang
Raw File
Tip revision: 6fa4edbfbf01ef582a3ddc2fdfdedc79ba60d365 authored by Yong He on 30 March 2023, 01:23:21 UTC
Convert tensor types in `make_tensor_view`. (#2755)
Tip revision: 6fa4edb
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