https://issues.dlang.org/show_bug.cgi?id=16653
--- Comment #2 from Lucia Cojocaru <[email protected]> --- PR with fix here: https://github.com/dlang/phobos/pull/4977 This works for me now: import std.traits; int main() { void f(lazy int x = 0) {} pragma(msg, ParameterDefaultValueTuple!f); return 0; } --
