blob: ae173ce7e09f312cef51525c5ee68137a2d15cbe [file] [log] [blame]
Douglas Gregorde049cd2010-06-22 02:17:07 +00001// RUN: %clang -c %s -o %t.o && libtool -static -o libcodegentest.a %t.o && %clang -bundle -o codegentestbundle -L. -lcodegentest -Wl,-ObjC && nm codegentestbundle | grep -F '[A(foo) foo_myStuff]'
Fariborz Jahanian2990e3a2010-06-21 22:21:57 +00002// XFAIL: *
3// XTARGET: darwin9
4// PR7431
5@interface A
6@end
7@interface A(foo)
8- (void)foo_myStuff;
9@end
10@implementation A(foo)
11- (void)foo_myStuff {
12}
13@end