blob: 35b919c4cea7608232f1644e6afb227259630cf9 [file] [log] [blame]
Fariborz Jahanian2c7038b2007-11-26 19:52:57 +00001// RUN: clang -rewrite-test %s
2
3#include <Objc/objc.h>
4
5@interface MyDerived
6- (void) instanceMethod;
7@end
8
9@implementation MyDerived
10- (void) instanceMethod {
11}
12@end
13