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

struct foo
{
  virtual ~foo ();
};

int main ()
{
  static const foo tmp;
}