[AMDGPU][AsmParser][NFC] Get rid of custom default operand handlers.
[llvm-project.git] / clang / test / Rewriter / rewrite-user-defined-accessors.mm
blob4c35b5c4ef4e5d63cf9882c33a7b911bbb560727
1 // RUN: %clang_cc1 -x objective-c++ -Wno-return-type -fblocks -fms-extensions -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 %s -o %t-rw.cpp
2 // RUN: %clang_cc1 -fsyntax-only -std=gnu++98 -fblocks -Wno-address-of-temporary -Did="void*" -D"SEL=void*" -D"__declspec(X)=" %t-rw.cpp
3 // rdar:// 8570020
5 @interface Foo {
6         Foo *foo;
9 @property (retain, nonatomic) Foo *foo;
11 @end
13 @implementation Foo
15 - (Foo *)foo {
16     if (!foo) {
17         foo = 0;
18     }
19     return foo;
23 - (void) setFoo : (Foo *) arg {
24   foo = arg;
27 @synthesize foo;
29 @end