DMD64 D Compiler v2.066.1
The code below causes the compiler to crash with a segfault.
auto A(string , T)(T ) {
}
auto A(T){
}
struct F {
struct C {
}
L!C* f;
}
struct L(M, string N="") {
static assert(A!N()) ;
}
Comment #1 by ketmar — 2015-03-30T15:39:58Z
seems to be fixed in 2.067.
Comment #2 by k.hara.pg — 2015-03-30T20:24:28Z
(In reply to Ketmar Dark from comment #1)
> seems to be fixed in 2.067.
Actually it was a dup of issue 13459.
*** This issue has been marked as a duplicate of issue 13459 ***