https://issues.dlang.org/show_bug.cgi?id=8304
Tobias Pankrath <tob...@pankrath.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |tob...@pankrath.net Resolution|--- |FIXED --- Comment #7 from Tobias Pankrath <tob...@pankrath.net> --- import std.stdio; import std.typecons; void main() { Nullable!string s; writeln(s); } now prints "Nullable.null". --