blob: c67a3f6539000d337931c2c6fd459b08cb6c1c7f [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -fsyntax-only -verify %s
Douglas Gregorc83ed042008-11-25 04:08:05 +00002
Sebastian Redlb5a57a62008-12-03 20:26:15 +00003#include <stddef.h>
4
Sebastian Redl4c5d3202008-11-21 19:14:01 +00005struct S // expected-note {{candidate}}
6{
7 S(int, int, double); // expected-note {{candidate}}
Sebastian Redl3cb06922009-02-07 19:52:04 +00008 S(double, int); // expected-note 2 {{candidate}}
9 S(float, int); // expected-note 2 {{candidate}}
Sebastian Redl4c5d3202008-11-21 19:14:01 +000010};
Douglas Gregor4ec339f2009-01-19 19:26:10 +000011struct T; // expected-note{{forward declaration of 'struct T'}}
Sebastian Redl636a7c42008-12-04 17:24:46 +000012struct U
13{
14 // A special new, to verify that the global version isn't used.
Sebastian Redl9afe1302009-05-14 18:11:41 +000015 void* operator new(size_t, S*); // expected-note {{candidate}}
Sebastian Redl636a7c42008-12-04 17:24:46 +000016};
Sebastian Redl7f662392008-12-04 22:20:51 +000017struct V : U
18{
19};
Sebastian Redl4c5d3202008-11-21 19:14:01 +000020
Sebastian Redl3cb06922009-02-07 19:52:04 +000021void* operator new(size_t); // expected-note 2 {{candidate}}
22void* operator new(size_t, int*); // expected-note 3 {{candidate}}
23void* operator new(size_t, float*); // expected-note 3 {{candidate}}
Anders Carlssonfc27d262009-05-31 19:49:47 +000024void* operator new(size_t, S); // expected-note 2 {{candidate}}
Sebastian Redlb5a57a62008-12-03 20:26:15 +000025
Sebastian Redl4c5d3202008-11-21 19:14:01 +000026void good_news()
27{
28 int *pi = new int;
29 float *pf = new (pi) float();
30 pi = new int(1);
31 pi = new int('c');
32 const int *pci = new const int();
33 S *ps = new S(1, 2, 3.4);
Sebastian Redlcee63fb2008-12-02 14:43:59 +000034 ps = new (pf) (S)(1, 2, 3.4);
Sebastian Redl4c5d3202008-11-21 19:14:01 +000035 S *(*paps)[2] = new S*[*pi][2];
36 ps = new (S[3])(1, 2, 3.4);
37 typedef int ia4[4];
38 ia4 *pai = new (int[3][4]);
Sebastian Redlfb4ccd72008-12-02 16:35:44 +000039 pi = ::new int;
Sebastian Redl636a7c42008-12-04 17:24:46 +000040 U *pu = new (ps) U;
Douglas Gregor5d64e5b2009-09-30 00:03:47 +000041 V *pv = new (ps) V;
Anders Carlssonfc27d262009-05-31 19:49:47 +000042
43 pi = new (S(1.0f, 2)) int;
Anders Carlssonac18b2e2009-09-23 00:37:25 +000044
45 (void)new int[true];
Sebastian Redl4c5d3202008-11-21 19:14:01 +000046}
47
Douglas Gregore7450f52009-03-24 19:52:54 +000048struct abstract {
49 virtual ~abstract() = 0;
50};
51
Douglas Gregorc83ed042008-11-25 04:08:05 +000052void bad_news(int *ip)
Sebastian Redl4c5d3202008-11-21 19:14:01 +000053{
54 int i = 1;
55 (void)new; // expected-error {{missing type specifier}}
56 (void)new 4; // expected-error {{missing type specifier}}
57 (void)new () int; // expected-error {{expected expression}}
Sebastian Redlcee63fb2008-12-02 14:43:59 +000058 (void)new int[1.1]; // expected-error {{array size expression must have integral or enumerated type, not 'double'}}
Sebastian Redl4c5d3202008-11-21 19:14:01 +000059 (void)new int[1][i]; // expected-error {{only the first dimension}}
60 (void)new (int[1][i]); // expected-error {{only the first dimension}}
61 (void)new int(*(S*)0); // expected-error {{incompatible type initializing}}
62 (void)new int(1, 2); // expected-error {{initializer of a builtin type can only take one argument}}
63 (void)new S(1); // expected-error {{no matching constructor}}
Douglas Gregorc83ed042008-11-25 04:08:05 +000064 (void)new S(1, 1); // expected-error {{call to constructor of 'S' is ambiguous}}
Sebastian Redl4c5d3202008-11-21 19:14:01 +000065 (void)new const int; // expected-error {{must provide an initializer}}
Douglas Gregorc83ed042008-11-25 04:08:05 +000066 (void)new float*(ip); // expected-error {{incompatible type initializing 'int *', expected 'float *'}}
Sebastian Redlcee63fb2008-12-02 14:43:59 +000067 // Undefined, but clang should reject it directly.
68 (void)new int[-1]; // expected-error {{array size is negative}}
69 (void)new int[*(S*)0]; // expected-error {{array size expression must have integral or enumerated type, not 'struct S'}}
Sebastian Redlfb4ccd72008-12-02 16:35:44 +000070 (void)::S::new int; // expected-error {{expected unqualified-id}}
Sebastian Redlb5a57a62008-12-03 20:26:15 +000071 (void)new (0, 0) int; // expected-error {{no matching function for call to 'operator new'}}
Sebastian Redl7f662392008-12-04 22:20:51 +000072 (void)new (0L) int; // expected-error {{call to 'operator new' is ambiguous}}
Sebastian Redl636a7c42008-12-04 17:24:46 +000073 // This must fail, because the member version shouldn't be found.
74 (void)::new ((S*)0) U; // expected-error {{no matching function for call to 'operator new'}}
Sebastian Redl9afe1302009-05-14 18:11:41 +000075 // This must fail, because any member version hides all global versions.
76 (void)new U; // expected-error {{no matching function for call to 'operator new'}}
Sebastian Redl00e68e22009-02-09 18:24:27 +000077 (void)new (int[]); // expected-error {{array size must be specified in new expressions}}
78 (void)new int&; // expected-error {{cannot allocate reference type 'int &' with new}}
Sebastian Redl4c5d3202008-11-21 19:14:01 +000079 // Some lacking cases due to lack of sema support.
80}
81
82void good_deletes()
83{
84 delete (int*)0;
85 delete [](int*)0;
86 delete (S*)0;
Sebastian Redlfb4ccd72008-12-02 16:35:44 +000087 ::delete (int*)0;
Sebastian Redl4c5d3202008-11-21 19:14:01 +000088}
89
90void bad_deletes()
91{
92 delete 0; // expected-error {{cannot delete expression of type 'int'}}
93 delete [0] (int*)0; // expected-error {{expected ']'}} \
Chris Lattner28eb7e92008-11-23 23:17:07 +000094 // expected-note {{to match this '['}}
Sebastian Redl4c5d3202008-11-21 19:14:01 +000095 delete (void*)0; // expected-error {{cannot delete expression}}
96 delete (T*)0; // expected-warning {{deleting pointer to incomplete type}}
Sebastian Redlfb4ccd72008-12-02 16:35:44 +000097 ::S::delete (int*)0; // expected-error {{expected unqualified-id}}
Sebastian Redl4c5d3202008-11-21 19:14:01 +000098}
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +000099
100struct X0 { };
101
102struct X1 {
103 operator int*();
104 operator float();
105};
106
107struct X2 {
Fariborz Jahanianf6527932009-09-15 17:21:47 +0000108 operator int*(); // expected-note {{candidate function}}
109 operator float*(); // expected-note {{candidate function}}
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +0000110};
111
112void test_delete_conv(X0 x0, X1 x1, X2 x2) {
113 delete x0; // expected-error{{cannot delete}}
114 delete x1;
Fariborz Jahanianf6527932009-09-15 17:21:47 +0000115 delete x2; // expected-error{{ambiguous conversion of delete expression of type 'struct X2' to a pointer}}
116}
Douglas Gregor90916562009-09-29 18:16:17 +0000117
118// PR4782
119class X3 {
120public:
121 static void operator delete(void * mem, unsigned long size);
122};
123
124class X4 {
125public:
126 static void release(X3 *x);
127 static void operator delete(void * mem, unsigned long size);
128};
129
130
131void X4::release(X3 *x) {
132 delete x;
133}
Douglas Gregor1070c9f2009-09-29 21:38:53 +0000134
Douglas Gregor5d64e5b2009-09-30 00:03:47 +0000135class X5 {
Douglas Gregor1070c9f2009-09-29 21:38:53 +0000136public:
137 void Destroy() const { delete this; }
138};