aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/crash1.C
blob: 298273490fc6f9abfeadb5c5d5a78019ecbcc4b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// 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";
  }