mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-25 22:38:56 -04:00

a messaging expression except in the simple case of a unary selector. We cannot reliably provide such a fixit due to numerous reasons where a matching selector could not be found. rdar://15756038 llvm-svn: 215480
16 lines
299 B
Objective-C
16 lines
299 B
Objective-C
// 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];
|
|
}
|