• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang_cc1 -emit-llvm %s -o %t
2 
3 enum E {};
4 int v1 = E();
5 float v2 = float();
6 
f()7 void f() {
8   int v3 = int();
9   _Complex int v4 = typeof(_Complex int)();
10   _Complex float v5 = typeof(_Complex float)();
11 }
12