mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
11 lines
184 B
Plaintext
11 lines
184 B
Plaintext
|
|
|
|
enum EnumTestOverflow
|
|
{
|
|
VALUE = 0x80000000, // #error: does not fit into 'int'
|
|
}
|
|
|
|
enum EnumTestErrorType : float // #error: must be an integer type not 'float'
|
|
{
|
|
VALUE_BOOM
|
|
} |