blob: 3c63c3d36a788a7dc3412ddd8f6b992e6321bf82 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Douglas Gregor42a552f2008-11-05 20:51:48 +00002class A {
3public:
4 ~A();
5};
6
7class B {
8public:
9 ~B() { }
10};
11
12class C {
13public:
14 (~C)() { }
15};
16
17struct D {
18 static void ~D(int, ...) const { } // \
19 // expected-error{{type qualifier is not allowed on this function}} \
20 // expected-error{{destructor cannot be declared 'static'}} \
Douglas Gregor42a552f2008-11-05 20:51:48 +000021 // expected-error{{destructor cannot have any parameters}} \
Douglas Gregord92ec472010-07-01 05:10:53 +000022 // expected-error{{destructor cannot be variadic}} \
23 // expected-error{{destructor cannot have a return type}} \
24 // expected-error{{'const' qualifier is not allowed on a destructor}}
Douglas Gregor42a552f2008-11-05 20:51:48 +000025};
26
Chris Lattner65401802009-04-25 08:28:21 +000027struct D2 {
28 void ~D2() { } // \
29 // expected-error{{destructor cannot have a return type}}
30};
31
Chris Lattnereaaebc72009-04-25 08:06:05 +000032
Douglas Gregor42a552f2008-11-05 20:51:48 +000033struct E;
34
35typedef E E_typedef;
36struct E {
John McCall7c2342d2010-03-10 11:27:22 +000037 ~E_typedef(); // expected-error{{destructor cannot be declared using a typedef 'E_typedef' (aka 'E') of the class name}}
Douglas Gregor42a552f2008-11-05 20:51:48 +000038};
39
40struct F {
Chris Lattner5f4a6822008-11-23 23:12:31 +000041 (~F)(); // expected-note {{previous declaration is here}}
42 ~F(); // expected-error {{destructor cannot be redeclared}}
Douglas Gregor42a552f2008-11-05 20:51:48 +000043};
44
Douglas Gregor124b8782010-02-16 19:09:40 +000045~; // expected-error {{expected a class name after '~' to name a destructor}}
Fariborz Jahanian76ed9cb2009-07-20 22:41:12 +000046~undef(); // expected-error {{expected the class name after '~' to name a destructor}}
Douglas Gregor124b8782010-02-16 19:09:40 +000047~operator+(int, int); // expected-error {{expected a class name after '~' to name a destructor}}
Argyrios Kyrtzidisc7ed9c62008-11-07 22:02:30 +000048~F(){} // expected-error {{destructor must be a non-static member function}}
Douglas Gregor9d350972008-12-12 08:25:50 +000049
50struct G {
51 ~G();
52};
53
54G::~G() { }
55
Anders Carlsson7786d1c2009-04-30 23:18:11 +000056// <rdar://problem/6841210>
57struct H {
58 ~H(void) { }
59};
Fariborz Jahanianc19f9592009-07-21 15:28:50 +000060
61struct X {};
62
63struct Y {
64 ~X(); // expected-error {{expected the class name after '~' to name the enclosing class}}
65};
Douglas Gregor333de062010-02-25 18:11:54 +000066
67namespace PR6421 {
68 class T; // expected-note{{forward declaration}}
69
70 class QGenericArgument
71 {
72 template<typename U>
73 void foo(T t) // expected-error{{variable has incomplete type}}
74 { }
75
76 void disconnect()
77 {
78 T* t;
79 bob<QGenericArgument>(t); // expected-error{{undeclared identifier 'bob'}}
80 }
81 };
82}
Douglas Gregor9c127392010-03-26 06:57:13 +000083
84namespace PR6709 {
85 template<class T> class X { T v; ~X() { ++*v; } };
86 void a(X<int> x) {}
87}
Douglas Gregord92ec472010-07-01 05:10:53 +000088
89struct X0 { virtual ~X0() throw(); };
90struct X1 : public X0 { };