You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 3, 2018. It is now read-only.
The following code snippet utilizes the "nested classes" feature of D and allocates inner class though the outer.new syntax.
module test;
import std.stdio;
class Outer {
int x = 5;
class Inner {
this() {
this.outer.x = 7;
}
}
}
void main() {
}
This is a valid compilable code but DDT plugin highlights the outer.new expression as if it contained an error.

The text was updated successfully, but these errors were encountered: