OSDN Git Service

PR testsuite/25241
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / crash25.C
1 // { dg-do assemble  }
2 // { dg-options "-fshow-column" }
3 // Origin: Jakub Jelinek <jakub@redhat.com>
4
5 class X { // { dg-error "1:new types may not be defined in a return type" "new types" }
6 // { dg-message "1:\\(perhaps a semicolon is missing after the definition of 'X'\\)" "note" { target *-*-* } 5 }
7 public:
8   X();
9   virtual ~X();
10 }
11
12 X::x()  // { dg-error "6:no 'X X::x\\(\\)' member function declared in class 'X'" }
13 {
14 }
15
16 X::~x() // { dg-error "6:expected class-name before '\\(' token" }
17 {                               
18 }