mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
15 lines
177 B
D
15 lines
177 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/ice12827.d(10): Error: circular initialization of variable `ice12827.Test.i`
|
|
---
|
|
*/
|
|
|
|
struct Test
|
|
{
|
|
immutable int i = i;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
}
|