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
/
special
/
conpr-3a.cc
blob
b237bb57f36e9fb27f53dda84af71df0551cf3ef
1
/* { dg-do run } */
2
3
class
foo_t
{
4
int
x
;
5
static int
count
;
6
public
:
7
foo_t
(
void
) {
x
=++
count
; }
8
int
get
(
void
) {
return
x
; }
9
};
10
11
foo_t foo1
__attribute__
((
init_priority
(
6000
)));