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

struct foo
{
  virtual ~foo ();
};

int main ()
{
  static const foo tmp;
}