* fi.po: Update.
[official-gcc.git] / gcc / testsuite / g++.dg / inherit / thunk9.C
blob9eb9999f340c21adde4837367366e960892da8d6
1 // PR tree-optimization/37095
2 // { dg-options "-O" }
4 struct A
6   virtual A *foo ();
7 };
9 struct B : virtual A
11   virtual B *foo () { return 0; }
14 B b;