brintos

brintos / llvm-project-archived public Read only

0
0
Text · 209 B · 6e4cc03 Raw
12 lines · cpp
1// RUN: %clang_cc1 -emit-llvm %s -o %t2 3enum E {};4int v1 = E();5float v2 = float();6 7void f() {8  int v3 = int();9  _Complex int v4 = typeof(_Complex int)();10  _Complex float v5 = typeof(_Complex float)();11}12