blob: ecd780b9b3f809d75af28663d842d7c98e2c4329 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3int test() {
4 __complex__ double C;
5 double D;
6 C / D;
7}