https://issues.dlang.org/show_bug.cgi?id=12827
matovitch <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|DMD segfaults if the member |DMD segfaults when |variable has the same name |affecting immutable member |as the template argument |with himself --- Comment #1 from matovitch <[email protected]> --- In fact it does'nt have to be template you affect an immutable member with himself and it segfaults : struct Test { immutable int i = i; } void main() {} --
