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
c++: Implement for namespace statics CWG 2867 - Order of initialization for structure...
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr71104-1.c
blob
20c055ad81794dedcea16c62e291693fa734a332
1
/* { dg-do compile } */
2
3
void
foo
(
void
);
4
int
vfork
(
void
);
5
int
*
p
;
6
7
void
bar
(
void
)
8
{
9
foo
();
10
*
p
=
vfork
();
11
}