aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/net13.C
blob: d56e87270e7e7066f67cb08582808588c32ec179 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Build don't link:

// make sure extern "C" friends work.

extern "C" { void func(); }

struct crash {
  int i;
  friend void func();
} a;

void func() {
  a.i = 1;
}