blob: d9392ed73f18d7bdd7950addd832b372464ad14a [file] [log] [blame]
John McCalld1e40d52011-10-02 01:16:38 +00001// RUN: %clang_cc1 -fobjc-arc -isystem %S/Inputs %s -DNO_USE
2// RUN: %clang_cc1 -fobjc-arc -isystem %S/Inputs %s -verify
John McCallf85e1932011-06-15 23:02:42 +00003
John McCallf85e1932011-06-15 23:02:42 +00004#include <arc-system-header.h>
5
6#ifndef NO_USE
7void test(id op, void *cp) {
8 cp = test0(op); // expected-error {{'test0' is unavailable: converts between Objective-C and C pointers in -fobjc-arc}}
9 cp = *test1(&op); // expected-error {{'test1' is unavailable: converts between Objective-C and C pointers in -fobjc-arc}}
Andy Gibbsb42f2002013-04-17 08:06:46 +000010// expected-note@arc-system-header.h:1 {{marked unavailable here}}
11// expected-note@arc-system-header.h:5 {{marked unavailable here}}
John McCallf85e1932011-06-15 23:02:42 +000012}
13
John McCallf85e1932011-06-15 23:02:42 +000014void test3(struct Test3 *p) {
15 p->field = 0; // expected-error {{'field' is unavailable: this system declaration uses an unsupported type}}
Andy Gibbsb42f2002013-04-17 08:06:46 +000016 // expected-note@arc-system-header.h:14 {{marked unavailable here}}
John McCallf85e1932011-06-15 23:02:42 +000017}
18
John McCallf85e1932011-06-15 23:02:42 +000019void test4(Test4 *p) {
20 p->field1 = 0; // expected-error {{'field1' is unavailable: this system declaration uses an unsupported type}}
Andy Gibbsb42f2002013-04-17 08:06:46 +000021 // expected-note@arc-system-header.h:19 {{marked unavailable here}}
John McCallf85e1932011-06-15 23:02:42 +000022 p->field2 = 0;
23}
24
John McCallf85e1932011-06-15 23:02:42 +000025void test5(struct Test5 *p) {
Argyrios Kyrtzidisb8b03132011-06-24 00:08:59 +000026 p->field = 0; // expected-error {{'field' is unavailable: this system field has retaining ownership}}
Andy Gibbsb42f2002013-04-17 08:06:46 +000027 // expected-note@arc-system-header.h:25 {{marked unavailable here}}
John McCallf85e1932011-06-15 23:02:42 +000028}
29
30id test6() {
31 // This is actually okay to use if declared in a system header.
32 id x;
33 x = (id) kMagicConstant;
34 x = (id) (x ? kMagicConstant : kMagicConstant);
35 x = (id) (x ? kMagicConstant : (void*) 0);
36
37 extern void test6_helper();
38 x = (id) (test6_helper(), kMagicConstant);
39}
40
John McCallf85e1932011-06-15 23:02:42 +000041void test7(Test7 *p) {
42 *p.prop = 0; // expected-error {{'prop' is unavailable: this system declaration uses an unsupported type}}
43 p.prop = 0; // expected-error {{'prop' is unavailable: this system declaration uses an unsupported type}}
44 *[p prop] = 0; // expected-error {{'prop' is unavailable: this system declaration uses an unsupported type}}
45 [p setProp: 0]; // expected-error {{'setProp:' is unavailable: this system declaration uses an unsupported type}}
Andy Gibbsb42f2002013-04-17 08:06:46 +000046// expected-note@arc-system-header.h:41 4 {{marked unavailable here}}
47// expected-note@arc-system-header.h:41 2 {{property 'prop' is declared unavailable here}}
John McCallf85e1932011-06-15 23:02:42 +000048}
49#endif
John McCallb64915a2011-06-17 21:56:12 +000050
51// test8 in header