No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / g++.dg / inherit / pure1.C
blobddd3cb332dfd85bbf712f65e653666018e219a6c
1 // PR c++/23266
2 // Origin: Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
3 // { dg-do compile }
5 void foo0() = 0;                   // { dg-error "like a variable" }
6 virtual void foo1() = 0;           // { dg-error "outside class|variable" }
8 struct A
10   void foo2() = 0;                 // { dg-error "non-virtual" }
11   static void foo3() = 0;          // { dg-error "static member" }
12   virtual static void foo4() = 0;  // { dg-error "both virtual and static" }
13   virtual void foo5() = 0;         // { dg-error "base class" }
16 struct B : A
18   static void foo5() = 0;          // { dg-error "static member|declared" }