Comment #0 by razvan.nitu1305 — 2019-07-29T08:17:53Z
struct C
{
this(int)
{
()
{
int a; int*p = &a;
}();
}
}
Compiling this code:
dmd -c -Hf=hdrgenbug.di test.d
yields:
struct C
{
this(int)
{
()
{
int a;
int* p = &a;
}
();
}
}
The constructor body should not be present
Comment #1 by razvan.nitu1305 — 2019-09-09T11:45:05Z
*** Issue 20194 has been marked as a duplicate of this issue. ***
Comment #2 by razvan.nitu1305 — 2023-04-18T11:24:20Z