dmd/compiler/test/fail_compilation/enum9921.d
2023-01-05 10:35:01 +02:00

13 lines
356 B
D

/*
TEST_OUTPUT:
---
fail_compilation/enum9921.d(9): Error: enum `enum9921.X` base type must not be `void`
fail_compilation/enum9921.d(11): Error: enum `enum9921.Z` base type must not be `void`
fail_compilation/enum9921.d(13): Error: variable `enum9921.x` - manifest constants must have initializers
---
*/
enum X : void;
enum Z : void { Y };
enum int x;