blob: d56e87270e7e7066f67cb08582808588c32ec179 [file] [log] [blame]
// 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;
}