* fi.po: Update.
[official-gcc.git] / gcc / testsuite / g++.dg / lto / pr60150.H
blob6afe37acc9c9b8eb9632d3c4e7b9c7c89a81cd68
1 struct Base {
2   virtual void f() = 0;
3 };
5 struct X : public Base { };
6 struct Y : public Base { };
7 struct Z : public Base { };
8 struct T : public Base { };
10 struct S : public X, public Y, public Z
11 #ifdef XXX
12 , public T
13 #endif
15   void f()
16 #ifdef XXX
17   { }
18 #endif
19   ;