import std.stdio;
class Foo { public this(string foo) { } } void main(string[] args) { auto foo = new Foo("bar", ); // <-- WOAH }
Gary Willoughby via Digitalmars-d-learn Sun, 04 May 2014 03:05:29 -0700
import std.stdio;
class Foo { public this(string foo) { } } void main(string[] args) { auto foo = new Foo("bar", ); // <-- WOAH }