https://issues.dlang.org/show_bug.cgi?id=20458
--- Comment #3 from Basile-z <[email protected]> --- The same corruption without the getMember trait: ``` mixin template Impl(T){ alias a = T.test; pragma(msg, typeof(a)); // launch dsymbolsema and corrupt vtbl } class A(T) { mixin Impl!T; } class Foo : A!Foo { void test() {} } void main() { (new Foo).test(); } ``` --
