https://issues.dlang.org/show_bug.cgi?id=21093

--- Comment #3 from Iain Buclaw <[email protected]> ---
Nearby test:

module std.datetime.timezone;
import std;
class TimeZone
{
    bool hasDST();
}
class LocalTime : TimeZone
{
    static immutable(LocalTime) opCall() { }
    bool hasDST() { }
}

--

Reply via email to