dmd/compiler/test/fail_compilation/fail275.d
2022-07-09 18:53:07 +02:00

11 lines
164 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail275.d(10): Error: circular reference to variable `fail275.C.x`
---
*/
// REQUIRED_ARGS: -d
struct C
{
const x = C.x;
}