[middle-end PATCH] Prefer PLUS over IOR in RTL expansion of multi-word shifts/rotates.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / decl3.C
blob4534bd16aadb5a6d4dd4978c788216675ebde1ad
1 // { dg-do assemble  }
3 // Origin:  Adapted by Nathan Sidwell 29 Apr 1999 <nathan@acm.org>
4 //          from a test case submitted by Corey Kosak <kosak@cs.cmu.edu>
5 //          http://gcc.gnu.org/ml/gcc-bugs/1999-04n/msg00505.html
7 // We should not allow arrays of abstract type. [class.abstract/2]
9 struct cow_t { // { dg-message "pure" }
10   virtual void f()=0; // { dg-message "note" }
14 int main()
16   cow_t cow[2];  // { dg-error "abstract" }
17   cow[0].f();
18   return 0;