Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 8cc923fb8aa2aa132d72f4934b51b6d25d341b9d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package uniqueEnumLiterals

/* XPECT validationIssues ---
error at 'A as 'x'' message 'There may not be two enumerators with literal value 'x''
--- */

enum A
{
  A as 'x'
  B as 'x'
}

Back to the top