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
/
parse
/
extern-C-1.C
blob
60a634832f11a9d537a5a0096c2f982fa275858d
1
/* PR c++/4754 */
2
/* { dg-do compile } */
3
// GCC 3.2 got very confused by the nested extern "C" blocks, and thought
4
// there was a storage class specifier on 'int i'.
5
6
extern "C"
7
{
8
extern "C" struct Test
9
{
10
int i;
11
};
12
}
13