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

20 lines
265 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail132.d(19): Error: cannot construct nested class `B` because no implicit `this` reference to outer class `A` is available
---
*/
//import std.stdio;
class A
{
class B
{
}
}
void main()
{
A.B c = new A.B;
}