summaryrefslogtreecommitdiff
path: root/test/CodeGenObjC/sel-as-builtin-type.m
blob: 72a8564e0888874e150d159fed8a767589ca27e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// RUN: %clang_cc1 -emit-llvm -o %t %s
// pr5025
// radar 7405040

typedef const struct objc_selector {
  void *sel_id;
  const char *sel_types;
} *SEL;

@interface I2
+(id) dictionary;
@end

@implementation I3; // expected-warning {{cannot find interface declaration for 'I3'}}
+(void) initialize {
  I2 *a0 = [I2 dictionary];
}
@end

int func(SEL s1, SEL s2)
{
        return s1->sel_id == s2->sel_id;
}