[Issue 17269] formattedWrite of struct with Nullable value fails
    via Digitalmars-d-bugs 
    digitalmars-d-bugs at puremagic.com
       
    Thu Jun 15 09:56:15 PDT 2017
    
    
  
https://issues.dlang.org/show_bug.cgi?id=17269
Andre <andre at s-e-a-p.de> changed:
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |andre at s-e-a-p.de
--- Comment #4 from Andre <andre at 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;        
}
--
    
    
More information about the Digitalmars-d-bugs
mailing list