https://issues.dlang.org/show_bug.cgi?id=20458

--- Comment #4 from Basile-z <[email protected]> ---
Finally the generic reproduction

```
class Base
{
    alias a = Derived.test;
    pragma(msg, typeof(a)); // triggers the vtbl corruption
}

class Derived : Base
{
    void test(){}
}

void main()
{
    (new Derived).test();
}   
```

--

Reply via email to