Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
linkage7.C
blob: d1470a9ed025694c0db2d1b54f09531763b2342c [
file
] [
log
] [
blame
]
// { dg-do link }
// Origin: Mark Mitchell <mark@codesourcery.com>
namespace
N
{
extern
"C"
int
i
;
void
f
()
{
i
=
3
;
}
}
int
i
;
int
main
()
{
N
::
f
();
}