https://issues.dlang.org/show_bug.cgi?id=22737
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] | |rg Severity|normal |regression --- Comment #1 from [email protected] --- Slightly reduced / modified: ================================================== template Identity(T) { alias T Identity; } extern(C++) Identity!T identity(T)() { return Identity!T.init; } void main() { identity!int(); } ================================================== Up to 2.063 : Success and no output 2.064 to 2.066.0: Segfault and no output 2.067.1 to 2.083.1: Success and no output Since 2.084.1: Segfault and no output --
