2009-03-24 10:24:46 +08:00
|
|
|
// RUN: clang-cc -fsyntax-only -verify -pedantic %s
|
2007-08-25 22:37:06 +08:00
|
|
|
_Complex double X;
|
|
|
|
void test1(int c) {
|
|
|
|
X = 5;
|
|
|
|
}
|
|
|
|
void test2() {
|
|
|
|
int i;
|
|
|
|
double d = i;
|
|
|
|
double _Complex a = 5;
|
|
|
|
|
|
|
|
test1(a);
|
|
|
|
a = 5;
|
|
|
|
d = i;
|
|
|
|
}
|
|
|
|
int test3() {
|
|
|
|
int a[2];
|
2008-02-18 03:31:09 +08:00
|
|
|
a[0] = test3; // expected-warning{{incompatible pointer to integer conversion assigning 'int ()', expected 'int'}}
|
2009-07-22 08:43:08 +08:00
|
|
|
return 0;
|
2007-08-25 22:37:06 +08:00
|
|
|
}
|
|
|
|
short x; void test4(char c) { x += c; }
|
|
|
|
int y; void test5(char c) { y += c; }
|