diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2010-02-15 21:37:11 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2010-02-15 21:37:11 +0000 |
commit | aad49232a7d4037d39c5de9b12d9c76ebe1f565f (patch) | |
tree | 45d279ce71f5fad4d16507778edc24f729d77ce2 | |
parent | a135216595c00ddb5ce5f5b853a3d1f4037a13b7 (diff) |
Test to compile the rewritten file for my last patch.
(radar 7649577 related).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@96274 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Rewriter/rewrite-implementation.mm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/Rewriter/rewrite-implementation.mm b/test/Rewriter/rewrite-implementation.mm new file mode 100644 index 0000000000..608707c430 --- /dev/null +++ b/test/Rewriter/rewrite-implementation.mm @@ -0,0 +1,13 @@ +// RUN: %clang_cc1 -x objective-c++ -fblocks -fms-extensions -rewrite-objc %s -o %t-rw.cpp +// RUN: %clang_cc1 -DSEL="void *" -S %t-rw.cpp +// radar 7649577 + +@interface a +@end + +@interface b : a +@end + +@implementation b +@end + |