You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
299 B

// RUN: cp %s %t
// RUN: %clang_cc1 -x objective-c -fixit %t
// RUN: diff %t %s
// rdar://15756038
#define nil (void *)0
@interface NSObject
- (void)testDataSource:(id)object withMultipleArguments:(id)arguments;
@end
int main() {
id obj;
[obj TestDataSource:nil withMultipleArguments:nil];
}