mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +00:00
10 lines
137 B
Plaintext
10 lines
137 B
Plaintext
enum Test : (int a, int b)
|
|
{
|
|
FOO { 1, 2 }
|
|
}
|
|
|
|
enum Test2 : int (int a, int a) // #error: Duplicate parameter name 'a'
|
|
{
|
|
FOO { 1, 2 }
|
|
}
|