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;
}
---

Reply via email to