aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGenObjC/encode-test-4.m
blob: ac58fc3c9f87eda429d9dfc9541ab9b9dd1bef76 (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(void) {
  return @encode(int) == @encode(int) &&
    @encode(Color) == @encode(long) &&
    @encode(PrintColor) == @encode(int);
}