1 // { dg-do compile { target arm_eabi } }
2 // Class data should be exported.
3 // { dg-final { scan-not-hidden "_ZTV1S" } }
4 // { dg-final { scan-not-hidden "_ZTI1S" } }
5 // { dg-final { scan-not-hidden "_ZTS1S" } }
6 
7 struct S {
8   virtual void f();
9 };
10 
f()11 void S::f() {}
12