mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
12 lines
173 B
D
12 lines
173 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/ice11793.d(11): Error: circular reference to `ice11793.Outer.outer`
|
|
---
|
|
*/
|
|
|
|
class Outer
|
|
{
|
|
int foo;
|
|
Outer outer = new Outer();
|
|
}
|