summaryrefslogtreecommitdiffstats
path: root/test/SemaObjC/bad-receiver-1.m
blob: 64ff3d199314b78a3ca080ac9e02f99138acbce8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// RUN: clang-cc -fsyntax-only -verify %s

@interface I
- (id) retain;
@end

void __raiseExc1() {
 [objc_lookUpClass("NSString") retain]; // expected-warning {{receiver type 'int' is not 'id'}} \
    expected-warning {{method '-retain' not found}}
}

typedef const struct __CFString * CFStringRef;

void func() {
  CFStringRef obj;

  [obj self]; // expected-warning {{receiver type 'CFStringRef' (aka 'struct __CFString const *') is not 'id'}} \\
                 expected-warning {{method '-self' not found}}
}
OpenPOWER on IntegriCloud