2008-01-04 21:04:52 +03:00
|
|
|
// RUN: clang -fsyntax-only -verify -pedantic %s
|
2007-08-25 18:37:06 +04: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-17 22:31:09 +03:00
|
|
|
a[0] = test3; // expected-warning{{incompatible pointer to integer conversion assigning 'int ()', expected 'int'}}
|
2007-08-25 18:37:06 +04:00
|
|
|
}
|
|
|
|
short x; void test4(char c) { x += c; }
|
|
|
|
int y; void test5(char c) { y += c; }
|