FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.mike / net13.C
blobd56e87270e7e7066f67cb08582808588c32ec179
1 // Build don't link:
3 // make sure extern "C" friends work.
5 extern "C" { void func(); }
7 struct crash {
8   int i;
9   friend void func();
10 } a;
12 void func() {
13   a.i = 1;