Daniel Dunbar | d7d5f02 | 2009-03-24 02:24:46 +0000 | [diff] [blame] | 1 | // RUN: clang-cc -fsyntax-only -verify %s |
Douglas Gregor | c83ed04 | 2008-11-25 04:08:05 +0000 | [diff] [blame] | 2 | |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 3 | #include <stddef.h> |
| 4 | |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 5 | struct S // expected-note {{candidate}} |
| 6 | { |
| 7 | S(int, int, double); // expected-note {{candidate}} |
Sebastian Redl | 3cb0692 | 2009-02-07 19:52:04 +0000 | [diff] [blame] | 8 | S(double, int); // expected-note 2 {{candidate}} |
| 9 | S(float, int); // expected-note 2 {{candidate}} |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 10 | }; |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 11 | struct T; // expected-note{{forward declaration of 'struct T'}} |
Sebastian Redl | 636a7c4 | 2008-12-04 17:24:46 +0000 | [diff] [blame] | 12 | struct U |
| 13 | { |
| 14 | // A special new, to verify that the global version isn't used. |
Sebastian Redl | 9afe130 | 2009-05-14 18:11:41 +0000 | [diff] [blame] | 15 | void* operator new(size_t, S*); // expected-note {{candidate}} |
Sebastian Redl | 636a7c4 | 2008-12-04 17:24:46 +0000 | [diff] [blame] | 16 | }; |
Sebastian Redl | 7f66239 | 2008-12-04 22:20:51 +0000 | [diff] [blame] | 17 | struct V : U |
| 18 | { |
| 19 | }; |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 20 | |
Sebastian Redl | 3cb0692 | 2009-02-07 19:52:04 +0000 | [diff] [blame] | 21 | void* operator new(size_t); // expected-note 2 {{candidate}} |
| 22 | void* operator new(size_t, int*); // expected-note 3 {{candidate}} |
| 23 | void* operator new(size_t, float*); // expected-note 3 {{candidate}} |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 24 | |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 25 | void good_news() |
| 26 | { |
| 27 | int *pi = new int; |
| 28 | float *pf = new (pi) float(); |
| 29 | pi = new int(1); |
| 30 | pi = new int('c'); |
| 31 | const int *pci = new const int(); |
| 32 | S *ps = new S(1, 2, 3.4); |
Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 33 | ps = new (pf) (S)(1, 2, 3.4); |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 34 | S *(*paps)[2] = new S*[*pi][2]; |
| 35 | ps = new (S[3])(1, 2, 3.4); |
| 36 | typedef int ia4[4]; |
| 37 | ia4 *pai = new (int[3][4]); |
Sebastian Redl | fb4ccd7 | 2008-12-02 16:35:44 +0000 | [diff] [blame] | 38 | pi = ::new int; |
Sebastian Redl | 636a7c4 | 2008-12-04 17:24:46 +0000 | [diff] [blame] | 39 | U *pu = new (ps) U; |
Sebastian Redl | 9afe130 | 2009-05-14 18:11:41 +0000 | [diff] [blame] | 40 | // FIXME: Inherited functions are not looked up currently. |
Sebastian Redl | 7f66239 | 2008-12-04 22:20:51 +0000 | [diff] [blame] | 41 | //V *pv = new (ps) V; |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 42 | } |
| 43 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 44 | struct abstract { |
| 45 | virtual ~abstract() = 0; |
| 46 | }; |
| 47 | |
Douglas Gregor | c83ed04 | 2008-11-25 04:08:05 +0000 | [diff] [blame] | 48 | void bad_news(int *ip) |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 49 | { |
| 50 | int i = 1; |
| 51 | (void)new; // expected-error {{missing type specifier}} |
| 52 | (void)new 4; // expected-error {{missing type specifier}} |
| 53 | (void)new () int; // expected-error {{expected expression}} |
Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 54 | (void)new int[1.1]; // expected-error {{array size expression must have integral or enumerated type, not 'double'}} |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 55 | (void)new int[1][i]; // expected-error {{only the first dimension}} |
| 56 | (void)new (int[1][i]); // expected-error {{only the first dimension}} |
| 57 | (void)new int(*(S*)0); // expected-error {{incompatible type initializing}} |
| 58 | (void)new int(1, 2); // expected-error {{initializer of a builtin type can only take one argument}} |
| 59 | (void)new S(1); // expected-error {{no matching constructor}} |
Douglas Gregor | c83ed04 | 2008-11-25 04:08:05 +0000 | [diff] [blame] | 60 | (void)new S(1, 1); // expected-error {{call to constructor of 'S' is ambiguous}} |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 61 | (void)new const int; // expected-error {{must provide an initializer}} |
Douglas Gregor | c83ed04 | 2008-11-25 04:08:05 +0000 | [diff] [blame] | 62 | (void)new float*(ip); // expected-error {{incompatible type initializing 'int *', expected 'float *'}} |
Sebastian Redl | cee63fb | 2008-12-02 14:43:59 +0000 | [diff] [blame] | 63 | // Undefined, but clang should reject it directly. |
| 64 | (void)new int[-1]; // expected-error {{array size is negative}} |
| 65 | (void)new int[*(S*)0]; // expected-error {{array size expression must have integral or enumerated type, not 'struct S'}} |
Sebastian Redl | fb4ccd7 | 2008-12-02 16:35:44 +0000 | [diff] [blame] | 66 | (void)::S::new int; // expected-error {{expected unqualified-id}} |
Sebastian Redl | b5a57a6 | 2008-12-03 20:26:15 +0000 | [diff] [blame] | 67 | (void)new (0, 0) int; // expected-error {{no matching function for call to 'operator new'}} |
Sebastian Redl | 7f66239 | 2008-12-04 22:20:51 +0000 | [diff] [blame] | 68 | (void)new (0L) int; // expected-error {{call to 'operator new' is ambiguous}} |
Sebastian Redl | 636a7c4 | 2008-12-04 17:24:46 +0000 | [diff] [blame] | 69 | // This must fail, because the member version shouldn't be found. |
| 70 | (void)::new ((S*)0) U; // expected-error {{no matching function for call to 'operator new'}} |
Sebastian Redl | 9afe130 | 2009-05-14 18:11:41 +0000 | [diff] [blame] | 71 | // This must fail, because any member version hides all global versions. |
| 72 | (void)new U; // expected-error {{no matching function for call to 'operator new'}} |
Sebastian Redl | 00e68e2 | 2009-02-09 18:24:27 +0000 | [diff] [blame] | 73 | (void)new (int[]); // expected-error {{array size must be specified in new expressions}} |
| 74 | (void)new int&; // expected-error {{cannot allocate reference type 'int &' with new}} |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 75 | // Some lacking cases due to lack of sema support. |
| 76 | } |
| 77 | |
| 78 | void good_deletes() |
| 79 | { |
| 80 | delete (int*)0; |
| 81 | delete [](int*)0; |
| 82 | delete (S*)0; |
Sebastian Redl | fb4ccd7 | 2008-12-02 16:35:44 +0000 | [diff] [blame] | 83 | ::delete (int*)0; |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | void bad_deletes() |
| 87 | { |
| 88 | delete 0; // expected-error {{cannot delete expression of type 'int'}} |
| 89 | delete [0] (int*)0; // expected-error {{expected ']'}} \ |
Chris Lattner | 28eb7e9 | 2008-11-23 23:17:07 +0000 | [diff] [blame] | 90 | // expected-note {{to match this '['}} |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 91 | delete (void*)0; // expected-error {{cannot delete expression}} |
| 92 | delete (T*)0; // expected-warning {{deleting pointer to incomplete type}} |
Sebastian Redl | fb4ccd7 | 2008-12-02 16:35:44 +0000 | [diff] [blame] | 93 | ::S::delete (int*)0; // expected-error {{expected unqualified-id}} |
Sebastian Redl | 4c5d320 | 2008-11-21 19:14:01 +0000 | [diff] [blame] | 94 | } |