/* For use with the method_pool.m test *//* Whitespace below is significant */@interfaceTestMethodPool1+ alloc;- (double)instMethod:(int)foo;@end@interfaceTestMethodPool2- (char)instMethod:(int)foo;@end@implementationTestMethodPool1+ alloc {return0;}- (double)instMethod:(int)foo{return foo;}@end@implementationTestMethodPool2- (char)instMethod:(int)foo{return foo;}@end