1// RUN: %clang_cc1 %s -o /dev/null -emit-llvm2 3double creal(_Complex double);4 5int foo(__complex float c) {6 return creal(c);7}8