(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
circ10280.d
/*
TEST_OUTPUT:
---
fail_compilation/circ10280.d(11): Error: circular initialization of variable `circ10280.q10280`
fail_compilation/circ10280.d(10):        called from here: `foo10280()`
---
*/
// https://issues.dlang.org/show_bug.cgi?id=10280

const int q10280 = foo10280();
int foo10280() { return q10280; }