blob: 5b0659a6b018fd250484508b78a4ea864bffb86d [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/ice10770.d(13): Error: enum ice10770.E2 is forward referenced looking for base type
fail_compilation/ice10770.d(13): while evaluating: `static assert(is(E2 e == enum))`
---
*/
enum E1 : int;
static assert(is(E1 e == enum) && is(e == int));
enum E2;
static assert(is(E2 e == enum));