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

15 lines
209 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail60.d(14): Error: cannot construct nested class `B` because no implicit `this` reference to outer class `A` is available
---
*/
class A
{
class B
{
}
B b=new B;
}