aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/init/const9.C
blob: 97458820d1631b39e1e5e8e4a16aaff13f4b48cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// PR c++/55893
// { dg-final { scan-assembler-not "rodata" { target { ! "hppa*-*-* s390*-*-*" } } } }

struct foo
{
  virtual ~foo ();
};

int main ()
{
  static const foo tmp;
}