Sign in
gnu
/
gcc.git
/
ab7c7b46c35ed1be68d4c020a2f20ee96f68b64b
/
.
/
gcc
/
testsuite
/
g++.dg
/
init
/
value1.C
blob: 9dbc2e067750ab056ce114eb17c5f7308b41ed6e [
file
] [
log
] [
blame
]
// Test that with value-initialization, i is initialized to 0
// and the vtable pointer is properly initialized.
// { dg-do run }
struct
A
{
int
i
;
virtual
void
f
()
{}
};
void
f
(
A
&
a
)
{
a
.
f
();
}
int
main
()
{
A a
=
A
();
f
(
a
);
return
a
.
i
;
}