summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/crash25.C
blob: 5460e03886fcc73c95efd1d9aa9beaeefa87e283 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// { dg-do assemble  }
// { dg-options "-fshow-column" }
// Origin: Jakub Jelinek <jakub@redhat.com>

class X { // { dg-error "1:new types may not be defined in a return type" "new types" }
// { dg-message "1:\\(perhaps a semicolon is missing after the definition of 'X'\\)" "note" { target *-*-* } 5 }
public:
  X();
  virtual ~X();
}

X::x()	// { dg-error "6:no 'X X::x\\(\\)' member function declared in class 'X'" }
{
}

X::~x()	// { dg-error "6:expected class-name before '\\(' token" }
{				
}