blob: 536049561deae7cdd1017b079827f05d8a4203fb [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail59.d(50): Error: cannot construct nested class `C2` because no implicit `this` reference to outer class `C1` is available
---
*/
class C1
{
int c1;
this()
{
c1 = 2;
}
class C2
{
class C3
{
int c3;
this(int n)
{
c3 = n + c1 + c2;
}
}
int c2;
C3 foo()
{
return new C3(8);
}
this(int k)
{
c2 = k + 7;
}
}
C2 bar()
{
return new C2(17);
}
}
void main()
{
C1.C2 q = new C1.C2(3);
}