1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 
3 void* operator new (__SIZE_TYPE__ size, void* ptr);
4 void* operator new[](__SIZE_TYPE__ size, void* ptr);
5 
6 typedef int __attribute__((address_space(1))) int_1;
7 
test_new(void * p)8 void test_new(void *p) {
9   (void)new int_1; // expected-error{{'new' cannot allocate objects of type 'int' in address space '1'}}
10   (void)new __attribute__((address_space(1))) int; // expected-error{{'new' cannot allocate objects of type 'int' in address space '1'}}
11   (void)new int_1 [5]; // expected-error{{'new' cannot allocate objects of type 'int' in address space '1'}}
12   (void)new __attribute__((address_space(1))) int [5]; // expected-error{{'new' cannot allocate objects of type 'int' in address space '1'}}
13 
14   // Placement new
15   (void)new (p) int_1; // expected-error{{'new' cannot allocate objects of type 'int' in address space '1'}}
16   (void)new (p) __attribute__((address_space(1))) int; // expected-error{{'new' cannot allocate objects of type 'int' in address space '1'}}
17   (void)new (p) int_1 [5]; // expected-error{{'new' cannot allocate objects of type 'int' in address space '1'}}
18   (void)new (p) __attribute__((address_space(1))) int [5]; // expected-error{{'new' cannot allocate objects of type 'int' in address space '1'}}
19 }
20 
test_delete(int_1 * ip1)21 void test_delete(int_1 *ip1) {
22   delete ip1; // expected-error{{'delete' cannot delete objects of type 'int' in address space '1'}}
23   delete [] ip1; // expected-error{{'delete' cannot delete objects of type 'int' in address space '1'}}
24 }
25