Rebase.
[official-gcc.git] / gcc / testsuite / g++.dg / init / value1.C
blob9dbc2e067750ab056ce114eb17c5f7308b41ed6e
1 // Test that with value-initialization, i is initialized to 0
2 // and the vtable pointer is properly initialized.
4 // { dg-do run }
6 struct A
8   int i;
9   virtual void f() {}
12 void f (A& a)
14   a.f();
17 int main()
19   A a = A();
20   f (a);
21   return a.i;