You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
323 B

// 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);
}