xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/cxx-value-init.cpp (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -emit-llvm %s -o %t
2*f4a2713aSLionel Sambuc 
3*f4a2713aSLionel Sambuc enum E {};
4*f4a2713aSLionel Sambuc int v1 = E();
5*f4a2713aSLionel Sambuc float v2 = float();
6*f4a2713aSLionel Sambuc 
f()7*f4a2713aSLionel Sambuc void f() {
8*f4a2713aSLionel Sambuc   int v3 = int();
9*f4a2713aSLionel Sambuc   _Complex int v4 = typeof(_Complex int)();
10*f4a2713aSLionel Sambuc   _Complex float v5 = typeof(_Complex float)();
11*f4a2713aSLionel Sambuc }
12