summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/constexpr-static3.C
blob: 11fd3436d4a24b15ab58853ec701862b5acbb6db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Test for constant initialization of class with vtable
// { dg-options "-save-temps" }
// { dg-final { scan-assembler-not "static_initialization" } }
// { dg-do run { target c++11 } }

int r = 1;
// implicit default constructor for A and B is constexpr
struct A { virtual void f() {} };
struct B: A { virtual void f() { r = 0; } };

B b;

int main()
{
  b.f();
  return r;
}