xref: /llvm-project/clang/test/Rewriter/rewrite-nested-ivar.mm (revision 0f1c1be1968076d6f96f8a7bcc4a15cf195ecd97)
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 -D"id=void*" -D"SEL=void*" -D"__declspec(X)=" %t-rw.cpp
3// RUN: %clang_cc1 -x objective-c++ -Wno-return-type -fblocks -fms-extensions -rewrite-objc %s -o %t-rw-modern.cpp
4// RUN: %clang_cc1 -fsyntax-only -std=gnu++98 -fblocks -Wno-address-of-temporary -D"id=void*" -D"SEL=void*" -D"__declspec(X)=" %t-rw-modern.cpp
5
6@interface NSURLResponse {
7@public
8  NSURLResponse *InnerResponse;
9}
10@end
11
12@interface NSCachedURLResponseInternal
13{
14    @public
15    NSURLResponse *response;
16}
17@end
18
19@interface NSCachedURLResponse
20{
21    @private
22    NSCachedURLResponseInternal *_internal;
23}
24- (void) Meth;
25@end
26
27@implementation NSCachedURLResponse
28- (void) Meth {
29    _internal->response->InnerResponse = 0;
30  }
31@end
32