blob: 052558ce0d8779b0edbf0e165783f2c0a28a0067 [file] [log] [blame]
class C
{
this()
{
auto i = new class()
{
auto k = new class()
{
void func()
{
this.outer.outer;
}
};
};
}
int i;
}
void main() {}