[docs] Fix build-docs.sh
[llvm-project.git] / clang / test / Rewriter / objc-modern-StretAPI-3.mm
blob3ada56e939b0de55daaa03ef0361bc7a1f9c7d25
1 // RUN: %clang_cc1 -x objective-c++ -fblocks -fms-extensions -rewrite-objc %s -o %t-rw.cpp
2 // RUN: %clang_cc1 -fsyntax-only -fblocks -Wno-address-of-temporary -D"Class=void*" -D"id=void*" -D"SEL=void*" -D"__declspec(X)=" %t-rw.cpp
3 // rdar://14932320
5 extern "C" void *sel_registerName(const char *);
6 typedef unsigned long size_t;
8 typedef struct {
9     unsigned long long x;
10     unsigned long long y;
11 } myPoint;
13 typedef struct {
14     unsigned long long x;
15     unsigned long long y;
16 } allPoint;
18 @interface Obj
19 + (myPoint)foo;
20 + (myPoint)foo : (int)Arg1 : (double)fArg;
21 + (allPoint)fee;
22 @end
24 @implementation Obj
25 + (allPoint)fee {
26     allPoint a;
27     a.x = a.y = 3;
28     
29     return a;
31 + (myPoint)foo {
32     myPoint r;
33     r.x = 1;
34     r.y = 2;
35     return r;
38 + (myPoint)foo : (int)Arg1 : (double)fArg {
39   myPoint r;
40   return r;
42 @end
44 myPoint Ret_myPoint() {
45   return [Obj foo];
48 allPoint Ret_allPoint() {
49   return [Obj fee];
52 myPoint Ret_myPoint1(int i, double d) {
53   return [Obj foo:i:d];
56 myPoint Ret_myPoint2() {
57   return [Obj foo];