Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.jason / crash1.C
blob078f349ce430dce7edad94b596054355c79fa85d
1 // { dg-do assemble  }
2 // Bug: g++ dies on this input.
4 class Sample
5   {
6  public:
7   int operator <<(const char *c);
8   };
10 extern Sample sample;
12 struct Simple
13   {
14   int a;
15   };
17 extern "C" void get_it();
19 class Test
20   {
21  private:
22   void test();
23   friend void get_it();
24   };
26 void Test::test()
27   {
28   sample << "hello";
29   }