blob: 20f396dd023b2aa77261ce72b76d8fbd716953b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// { dg-do assemble }
// 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 ();
};
|