https://issues.dlang.org/show_bug.cgi?id=17269
Andre <an...@s-e-a-p.de> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |an...@s-e-a-p.de --- Comment #4 from Andre <an...@s-e-a-p.de> --- This issue is also reproducible with std.conv: text import std.conv: text; import std.typecons; struct Foo { Nullable!string bar; } void main() { string s = Foo().text; } --