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
svn merge -r102224:107263 svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-3_4-branch
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
special
/
conpr-3b.cc
blob
b5efa0c35f68997318b96df8de8aa8fad8ffbf98
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 foo2
__attribute__
((
init_priority
(
5000
)));