(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
bug4283.d
/*
TEST_OUTPUT:
---
fail_compilation/bug4283.d(12): Error: declaration expected, not `}`
---
*/

template Foo(bool b) {
    static if (b)
        enum bool Foo = 1;
    else
}