https://issues.dlang.org/show_bug.cgi?id=15185
Issue ID: 15185
Summary: [REG2.069.0-b1] Not possible to create instance of
TypeInfo
Product: D
Version: D2
Hardware: All
OS: All
Status: NEW
Severity: regression
Priority: P1
Component: druntime
Assignee: [email protected]
Reporter: [email protected]
The following code results in the error below:
void main ()
{
auto a = new TypeInfo;
}
main.d(8): Error: cannot create instance of abstract class TypeInfo
main.d(8): function 'const(void)[] init() const pure nothrow @nogc
@safe' is not implemented
I guess the change is intentional but it's a breaking change.
--