summaryrefslogtreecommitdiffstats
path: root/test/CodeGenObjC/encode-test-1.m
blob: b4f3b0f9c33d395f2aaf22d586219b08fd91774d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// RUN: clang-cc -triple=i686-apple-darwin9 -fnext-runtime -emit-llvm -o %t %s &&
// RUN: grep -e "{Base=b2b3b4b5}" %t | count 1 &&
// RUN: grep -e "{Derived=b2b3b4b5b5b4b3}" %t | count 1

enum Enum { one, two, three, four };

@interface Base {
  unsigned a: 2;
  int b: 3;
  enum Enum c: 4;
  unsigned d: 5;
} 
@end

@interface Derived: Base {
  signed e: 5;
  int f: 4;
  enum Enum g: 3;
} 
@end

@implementation Base @end

@implementation Derived @end
  
int main(void)
{

  const char *en = @encode(Base);
//  printf ("%s\n", en);

  const char *ed = @encode(Derived);
 // printf ("%s\n", ed);

  return 0;
}
OpenPOWER on IntegriCloud