https://issues.dlang.org/show_bug.cgi?id=16980
Suleyman Sahmi (سليمان السهمي) <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED CC| |[email protected] Resolution|--- |FIXED --- Comment #9 from Suleyman Sahmi (سليمان السهمي) <[email protected]> --- > // calling the destructor still fails It fails because the field `ab` is not initialized, hence holds `null`. Try declaring `tinst` like this: ``` auto tinst = T!()(new C); ``` --
