summaryrefslogtreecommitdiffstats
path: root/test/FixIt/fixit-nsstring-compare.m
blob: 6f0877c0590d4e4b29fb5ebb2357fe887b60627f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// RUN: %clang_cc1 -triple x86_64-apple-darwin10  -fdiagnostics-parseable-fixits -x objective-c %s 2>&1 | FileCheck %s
// rdar://12716301

typedef unsigned char BOOL;

@protocol NSObject
- (BOOL)isEqual:(id)object;
@end

@interface NSString<NSObject>
@end

int main() {
  NSString *stringA = @"stringA";

  BOOL comparison = stringA==@"stringB";

}

// CHECK: {16:21-16:21}:"["
// CHECK: {16:28-16:30}:" isEqual:"
// CHECK: {16:40-16:40}:"]"