https://issues.dlang.org/show_bug.cgi?id=24519
Dennis <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] Hardware|x86_64 |All OS|Linux |All --- Comment #1 from Dennis <[email protected]> --- The new code to resolve __FILE__ and __LINE__ in default arguments crashes when walking over a slice generated from a typesafe variadic function. Reduced example: ``` int buildPath(int[] paths...) { return 0; } void f(int path = buildPath(1, 2)) { } void g() { f(); } ``` --
