On 12/24/19 3:15 PM, Adam D. Ruppe wrote:
> // the lazy here....
> T make(T)(lazy T t) {
> populate(t);
> return t;
> }
>
> class Foo {}
>
> void main() {
> // means the new Foo down there is automatically lambdaized
> auto tree = make(new Foo);
> }
I see a bug ;)
-Steve