1*f4a2713aSLionel Sambuc// RUN: not %clang_cc1 -triple x86_64-apple-darwin10 -fdiagnostics-parseable-fixits -x objective-c %s 2>&1 | FileCheck %s 2*f4a2713aSLionel Sambuc// rdar://11376372 3*f4a2713aSLionel Sambuc 4*f4a2713aSLionel Sambuc@class NSObject; 5*f4a2713aSLionel Sambuc 6*f4a2713aSLionel Sambuc@interface TestObj { 7*f4a2713aSLionel Sambuc} 8*f4a2713aSLionel Sambuc-(void)aMethodWithArg1:(NSObject*)arg1 arg2:(NSObject*)arg2; 9*f4a2713aSLionel Sambuc@end 10*f4a2713aSLionel Sambuc 11*f4a2713aSLionel Sambucint main(int argc, char *argv[]) 12*f4a2713aSLionel Sambuc{ 13*f4a2713aSLionel Sambuc TestObj *obj; 14*f4a2713aSLionel Sambuc [obj aMethodWithArg1:@"Arg 1 Good", arg2:@"Arg 2 Good"]; 15*f4a2713aSLionel Sambuc} 16*f4a2713aSLionel Sambuc 17*f4a2713aSLionel Sambuc// CHECK: {14:39-14:40}:"" 18