1 // PR c++/55893
2 // { dg-final { scan-assembler-not "rodata" { target { ! "hppa*-*-* s390*-*-*" } } } }
3 
4 struct foo
5 {
6   virtual ~foo ();
7 };
8 
main()9 int main ()
10 {
11   static const foo tmp;
12 }
13