mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
11 lines
311 B
D
11 lines
311 B
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; }
|