April 10, 2019
https://issues.dlang.org/show_bug.cgi?id=19799

          Issue ID: 19799
           Summary: templated string formatting fails with const
                    Nullable!string
           Product: D
           Version: D2
          Hardware: x86_64
                OS: Linux
            Status: NEW
          Severity: enhancement
          Priority: P1
         Component: phobos
          Assignee: nobody@puremagic.com
          Reporter: default_357-line@yahoo.de

import std.stdio;
import std.typecons;

void main() { writefln!"%s"(const(Nullable!string)()); }

------

Expected: "Nullable.null"
Got: horrible format template barf.

Come on guys. This code is too simple to fail so badly.

--