blob: 2624bc71fce2534644fb9d6f70299269ac19a6e5 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -emit-llvm -o - %s -O2 | grep "ret i32 1"
Douglas Gregor5471bc82011-09-08 17:18:35 +00002typedef long Integer;
3typedef enum : Integer { Red, Green, Blue} Color;
4typedef enum { Cyan, Magenta, Yellow, Key } PrintColor;
Eli Friedmana210f352009-03-07 20:17:55 +00005
6int a() {
Douglas Gregor5471bc82011-09-08 17:18:35 +00007 return @encode(int) == @encode(int) &&
8 @encode(Color) == @encode(long) &&
9 @encode(PrintColor) == @encode(int);
Eli Friedmana210f352009-03-07 20:17:55 +000010}