xref: /minix3/external/bsd/llvm/dist/clang/test/Rewriter/rewrite-api-bug.m (revision 0b98e8aad89f2bd4ba80b523d73cf29e9dd82ce1)
1// RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5  %s -o -
2
3@interface MyDerived
4- (void) instanceMethod;
5@end
6
7@implementation MyDerived
8- (void) instanceMethod {
9}
10@end
11
12