https://issues.dlang.org/show_bug.cgi?id=22100
Issue ID: 22100
Summary: Support chained assignment of Nullable
Product: D
Version: D2
Hardware: All
OS: All
Status: NEW
Severity: enhancement
Priority: P1
Component: phobos
Assignee: [email protected]
Reporter: [email protected]
This should work:
Nullable!int a, b, c;
a = b = c = 5;
a = b = c = nullable(5);
--
