mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
13 lines
230 B
D
13 lines
230 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/ice11926.d(11): Error: no identifier for declarator `const(a)`
|
|
fail_compilation/ice11926.d(12): Error: no identifier for declarator `const(b)`
|
|
---
|
|
*/
|
|
|
|
enum
|
|
{
|
|
const a = 1,
|
|
const b = 2
|
|
}
|