Comment #0 by verylonglogin.reg — 2013-11-07T08:42:00Z
E.g. `typeid(new const Object)` returns `typeid(Object)`:
---
void main()
{
assert(typeid(new const Object) is typeid(const Object)); // fails
}
---
This was part of Issue 4741.
Comment #1 by robert.schadek — 2024-12-13T18:13:48Z