summaryrefslogtreecommitdiff
path: root/test/CodeGenObjC/encode-test-4.m
blob: 2624bc71fce2534644fb9d6f70299269ac19a6e5 (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: %clang_cc1 -emit-llvm -o - %s -O2 | grep "ret i32 1"
typedef long Integer;
typedef enum : Integer { Red, Green, Blue} Color;
typedef enum { Cyan, Magenta, Yellow, Key } PrintColor;

int a() {
  return @encode(int) == @encode(int) &&
    @encode(Color) == @encode(long) &&
    @encode(PrintColor) == @encode(int);
}