8sa1-gcc/gcc/testsuite/g++.old-deja/g++.law/inline6.C
Jeff Law 921e5a0eb4 Initial revision
From-SVN: r14840
1997-08-19 01:34:40 -06:00

18 lines
406 B
C

// Build don't link:
// GROUPS passed inlining
// inline file
// Message-Id: <199307162240.AA04019@world.std.com>
// From: kol@world.std.com (Nikolay Yatsenko)
// Subject: g++ bug: crash with extern C friend
// Date: Fri, 16 Jul 1993 18:40:48 -0400
inline void Ignore(){}
extern "C" void foo() {} // but without extern C g++ compiles it
struct A
{
void f() {Ignore();}
friend void foo ();
};