repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[AArch64/arm] PR testsuite/85326 Avoid C++ tests when C++ compiler not present
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
init
/
value1.C
blob
9dbc2e067750ab056ce114eb17c5f7308b41ed6e
1
// Test that with value-initialization, i is initialized to 0
2
// and the vtable pointer is properly initialized.
3
4
// { dg-do run }
5
6
struct A
7
{
8
int i;
9
virtual void f() {}
10
};
11
12
void f (A& a)
13
{
14
a.f();
15
}
16
17
int main()
18
{
19
A a = A();
20
f (a);
21
return a.i;
22
}