summaryrefslogtreecommitdiffstats
path: root/tests/diagnostics/class-keyword.slang
blob: c869496b93c291fc1ad56e6b066e6763b89c2e2c (plain)
1
2
3
4
5
6
7
8
9
10
//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;
};