[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / CodeGenObjC / encode-test-4.m
blobac58fc3c9f87eda429d9dfc9541ab9b9dd1bef76
1 // RUN: %clang_cc1 -emit-llvm -o - %s -O2 | grep "ret i32 1"
2 typedef long Integer;
3 typedef enum : Integer { Red, Green, Blue} Color;
4 typedef enum { Cyan, Magenta, Yellow, Key } PrintColor;
6 int a(void) {
7   return @encode(int) == @encode(int) &&
8     @encode(Color) == @encode(long) &&
9     @encode(PrintColor) == @encode(int);