a simple _Complex testcase

llvm-svn: 39836
This commit is contained in:
Gabor Greif 2007-07-13 22:15:44 +00:00
parent 983a8bbbb2
commit f7b1f667d4
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
// RUN: clang -emit-llvm %s
// XFAIL: *
void main(void)
{
double _Complex a = 5;
double _Complex b = 42;
return a * b == 123;
}