https://issues.dlang.org/show_bug.cgi?id=10784
Nathan S. <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |[email protected] Resolution|--- |WORKSFORME --- Comment #2 from Nathan S. <[email protected]> --- Checked example code with DMD v2.082.1 and it's currently working. --- import std.typecons; alias Tuple!(float, "x", float, "y", float, "z") Coord; void main() { Nullable!Coord c = Coord(1f,2f,3f); } --- --
