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 Sambucvoid 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