Beta 2.095.0

Paolo Invernizzi paolo.invernizzi at gmail.com
Tue Dec 29 11:24:53 UTC 2020


On Tuesday, 29 December 2020 at 10:48:55 UTC, Paolo Invernizzi 
wrote:
> On Thursday, 24 December 2020 at 23:14:16 UTC, Mathias LANG 
> wrote:
>> [...]
>
> Mathias, reduced test case below (dustmined), thank you!
>
> [...]

Manually reduced to:
---
import std.typecons : Nullable;
import std.array : array;

class PGResultSet
{
     bool empty = true;
     void popFront() {}

     Foo front;
}

struct Foo {
     Nullable!long sessionStartedAtMs;
}

void foo() {
     auto rset = new PGResultSet;
     rset.array;
}
---


More information about the Digitalmars-d-announce mailing list