Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.jason / conversion7.C
blob925433ef6f2fa91e64dccfecc3a238596d4da181
1 // { dg-do run  }
2 // Bug: g++ tries to look inside (B*)0 for a virtual base pointer.
4 struct A
6 };
8 struct B : virtual A
12 A* a;
14 int main()
16     a = (B*)0;