https://issues.dlang.org/show_bug.cgi?id=14642
Kenji Hara <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Hardware|x86 |All OS|Linux |All --- Comment #2 from Kenji Hara <[email protected]> --- Reduced test case from the second tar for 2.067.1: alias TypeTuple(T...) = T; struct X { static struct NA() { X x; void check() { x.func(); } } alias na = NA!(); auto func() { Y* p; p.func(); } } struct Y { mixin Mix; } template Mix() { void func() { auto z = Z(null); } } struct Type(size_t v) {} enum errVal = errorValue; struct Z { Type!errVal v; } --
