1// RUN: %clang_cc1 -objcmt-migrate-instancetype %s -triple x86_64-apple-darwin11 -fobjc-arc -migrate -o %t.remap 2// RUN: FileCheck %s -input-file=%t.remap 3 4// Make sure we don't create an edit unnecessarily. 5// CHECK-NOT: instancetype 6 7@class NSString; 8@interface NSDictionary 9+(instancetype) dictionaryWithURLEncodedString:(NSString *)urlEncodedString; 10@end 11