[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / Rewriter / rewrite-modern-ivar-use.mm
blob8e729388c5ed58f273d045ab31a3d3efcbfbfe0b
1 // RUN: %clang_cc1 -x objective-c++ -Wno-return-type -fblocks -fms-extensions -rewrite-objc %s -o %t-rw-modern.cpp
2 // 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.cpp
4 void *sel_registerName(const char *);
6 @interface Foo {
7         int a;
8         id b;
10 - (void)bar;
11 - (void)baz:(id)q;
12 @end
14 @implementation Foo
15 // radar 7522803
16 static void foo(id bar) {
17         int i = ((Foo *)bar)->a;
20 - (void)bar {
21         a = 42;
23 - (void)baz:(id)q {
25 @end