Index: lib/Parse/ParseDecl.cpp =================================================================== --- lib/Parse/ParseDecl.cpp +++ lib/Parse/ParseDecl.cpp @@ -2935,8 +2935,8 @@ if (isInvalid) break; - DS.SetRangeEnd(Tok.getAnnotationEndLoc()); ConsumeToken(); // The typename + DS.SetRangeEnd(Tok.getLocation()); continue; } Index: test/FixIt/fixit-interface-as-param.m =================================================================== --- test/FixIt/fixit-interface-as-param.m +++ test/FixIt/fixit-interface-as-param.m @@ -5,7 +5,16 @@ @interface INTF - (void) drawRect : inView:(NSView)view; +- (void)test:(NSView )a; +- (void)foo; @end // CHECK: {7:35-7:35}:"*" - +// CHECK: {8:22-8:22}:"*" +@implementation INTF +-(void)foo { + ^(NSView view) { + }; +} +@end +// CHECK: {16:12-16:12}:"*"