Daniel Dunbar | a572887 | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify %s |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 2 | class A { |
| 3 | public: |
| 4 | ~A(); |
| 5 | }; |
| 6 | |
| 7 | class B { |
| 8 | public: |
| 9 | ~B() { } |
| 10 | }; |
| 11 | |
| 12 | class C { |
| 13 | public: |
| 14 | (~C)() { } |
| 15 | }; |
| 16 | |
| 17 | struct 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 Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 21 | // expected-error{{destructor cannot have any parameters}} \ |
| 22 | // expected-error{{destructor cannot be variadic}} |
| 23 | }; |
| 24 | |
Chris Lattner | 6540180 | 2009-04-25 08:28:21 +0000 | [diff] [blame] | 25 | struct D2 { |
| 26 | void ~D2() { } // \ |
| 27 | // expected-error{{destructor cannot have a return type}} |
| 28 | }; |
| 29 | |
Chris Lattner | eaaebc7 | 2009-04-25 08:06:05 +0000 | [diff] [blame] | 30 | |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 31 | struct E; |
| 32 | |
| 33 | typedef E E_typedef; |
| 34 | struct E { |
John McCall | 7c2342d | 2010-03-10 11:27:22 +0000 | [diff] [blame] | 35 | ~E_typedef(); // expected-error{{destructor cannot be declared using a typedef 'E_typedef' (aka 'E') of the class name}} |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 36 | }; |
| 37 | |
| 38 | struct F { |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 39 | (~F)(); // expected-note {{previous declaration is here}} |
| 40 | ~F(); // expected-error {{destructor cannot be redeclared}} |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 41 | }; |
| 42 | |
Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 43 | ~; // expected-error {{expected a class name after '~' to name a destructor}} |
Fariborz Jahanian | 76ed9cb | 2009-07-20 22:41:12 +0000 | [diff] [blame] | 44 | ~undef(); // expected-error {{expected the class name after '~' to name a destructor}} |
Douglas Gregor | 124b878 | 2010-02-16 19:09:40 +0000 | [diff] [blame] | 45 | ~operator+(int, int); // expected-error {{expected a class name after '~' to name a destructor}} |
Argyrios Kyrtzidis | c7ed9c6 | 2008-11-07 22:02:30 +0000 | [diff] [blame] | 46 | ~F(){} // expected-error {{destructor must be a non-static member function}} |
Douglas Gregor | 9d35097 | 2008-12-12 08:25:50 +0000 | [diff] [blame] | 47 | |
| 48 | struct G { |
| 49 | ~G(); |
| 50 | }; |
| 51 | |
| 52 | G::~G() { } |
| 53 | |
Anders Carlsson | 7786d1c | 2009-04-30 23:18:11 +0000 | [diff] [blame] | 54 | // <rdar://problem/6841210> |
| 55 | struct H { |
| 56 | ~H(void) { } |
| 57 | }; |
Fariborz Jahanian | c19f959 | 2009-07-21 15:28:50 +0000 | [diff] [blame] | 58 | |
| 59 | struct X {}; |
| 60 | |
| 61 | struct Y { |
| 62 | ~X(); // expected-error {{expected the class name after '~' to name the enclosing class}} |
| 63 | }; |
Douglas Gregor | 333de06 | 2010-02-25 18:11:54 +0000 | [diff] [blame] | 64 | |
| 65 | namespace PR6421 { |
| 66 | class T; // expected-note{{forward declaration}} |
| 67 | |
| 68 | class QGenericArgument |
| 69 | { |
| 70 | template<typename U> |
| 71 | void foo(T t) // expected-error{{variable has incomplete type}} |
| 72 | { } |
| 73 | |
| 74 | void disconnect() |
| 75 | { |
| 76 | T* t; |
| 77 | bob<QGenericArgument>(t); // expected-error{{undeclared identifier 'bob'}} |
| 78 | } |
| 79 | }; |
| 80 | } |
Douglas Gregor | 9c12739 | 2010-03-26 06:57:13 +0000 | [diff] [blame] | 81 | |
| 82 | namespace PR6709 { |
| 83 | template<class T> class X { T v; ~X() { ++*v; } }; |
| 84 | void a(X<int> x) {} |
| 85 | } |