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
Merged r158907 through r159238 into branch.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr43879-1_0.C
blob
710f6adfed9feb9765cd7ccc7061726509f317ba
1
struct A {
2
int *i;
3
A();
4
~A();
5
};
6
7
static int x = 0;
8
9
A::A() : i(&x) {}
10
A::~A() {}
11