summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.test/fail_compilation/enum9921.d
blob: 54c76b9f5cd1e421ed50c94b5da0ea58e91b0f41 (plain)
1
2
3
4
5
6
7
8
9
10
11
/*
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
---
*/

enum X : void;

enum Z : void { Y };