blob: 9c04e9a324f6a3892af5fcd159d08420f163e411 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation\enum_auto_increment.d(17): Error: cannot automatically assign value to enum member `enum_auto_increment.A2.d` because base type `A1` is an enum; provide an explicit value
---
*/
enum A1 : int
{
a,
b,
}
enum A2 : A1
{
c,
d,
}