26 lines · plain
1// RUN: %clang_cc1 -x objective-c++ -Wno-return-type -fblocks -fms-extensions -rewrite-objc %s -o %t-rw-modern.cpp2// RUN: %clang_cc1 -fsyntax-only -std=gnu++98 -fblocks -Wno-address-of-temporary -D"Class=void*" -D"id=void*" -D"SEL=void*" -D"__declspec(X)=" %t-rw-modern.cpp3 4void *sel_registerName(const char *);5 6@interface Foo {7 int a;8 id b;9}10- (void)bar;11- (void)baz:(id)q;12@end13 14@implementation Foo15static void foo(id bar) {16 int i = ((Foo *)bar)->a;17}18 19- (void)bar {20 a = 42;21}22- (void)baz:(id)q {23}24@end25 26