blob: ec8de0b223c92b95c71a7ae7ef5881766183ff8b [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail60.d(14): Error: `this` is only defined in non-static member functions, not `A`
---
*/
class A
{
class B
{
}
B b=new B;
}