blob: 298273490fc6f9abfeadb5c5d5a78019ecbcc4b2 [file] [log] [blame]
// Bug: g++ dies on this input.
// Build don't link:
class Sample
{
public:
int operator <<(const char *c);
};
extern Sample sample;
struct Simple
{
int a;
};
extern "C" void get_it();
class Test
{
private:
void test();
friend void get_it();
};
void Test::test()
{
sample << "hello";
}