blob: e9453a30b4439a52fd5b476de095ccbc09e99e0c [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/ice11793.d(11): Error: circular reference to 'ice11793.Outer.outer'
---
*/
class Outer
{
int foo;
Outer outer = new Outer();
}