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://11311333 3*f4a2713aSLionel Sambuc 4*f4a2713aSLionel Sambuc@interface NSView @end 5*f4a2713aSLionel Sambuc 6*f4a2713aSLionel Sambuc@interface INTF 7*f4a2713aSLionel Sambuc- (void) drawRect : inView:(NSView)view; 8*f4a2713aSLionel Sambuc@end 9*f4a2713aSLionel Sambuc 10*f4a2713aSLionel Sambuc// CHECK: {7:35-7:35}:"*" 11*f4a2713aSLionel Sambuc 12