repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
pch
/
static-1.Hs
blob
d277b787bafa9e1e813424ca911def9928784e72
1
class A
2
{
3
public:
4
int val;
5
6
~A() {
7
int i = 2;
8
}
9
10
static void StaticTest() {
11
static A a;
12
}
13
};