2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
2008-09-10 10:17:11 +08:00
|
|
|
|
|
|
|
void test() {
|
2008-09-11 07:34:50 +08:00
|
|
|
int x;
|
|
|
|
if (x) ++x;
|
2008-09-10 10:17:11 +08:00
|
|
|
if (int x=0) ++x;
|
|
|
|
|
|
|
|
typedef int arr[10];
|
2009-12-19 16:11:05 +08:00
|
|
|
while (arr x=0) ; // expected-error {{an array type is not allowed here}} expected-error {{array initializer must be an initializer list}}
|
2008-11-24 07:12:31 +08:00
|
|
|
while (int f()=0) ; // expected-error {{a function type is not allowed here}}
|
2008-09-10 10:17:11 +08:00
|
|
|
|
|
|
|
struct S {} s;
|
2009-01-14 23:45:31 +08:00
|
|
|
if (s) ++x; // expected-error {{value of type 'struct S' is not contextually convertible to 'bool'}}
|
|
|
|
while (struct S x=s) ; // expected-error {{value of type 'struct S' is not contextually convertible to 'bool'}}
|
|
|
|
do ; while (s); // expected-error {{value of type 'struct S' is not contextually convertible to 'bool'}}
|
|
|
|
for (;s;) ; // expected-error {{value of type 'struct S' is not contextually convertible to 'bool'}}
|
2008-11-24 07:12:31 +08:00
|
|
|
switch (s) {} // expected-error {{statement requires expression of integer type ('struct S' invalid)}}
|
2008-09-10 10:17:11 +08:00
|
|
|
|
2011-06-28 11:01:09 +08:00
|
|
|
while (struct S {} *x=0) ; // expected-error {{types may not be defined in conditions}}
|
|
|
|
while (struct {} *x=0) ; // expected-error {{types may not be defined in conditions}}
|
2010-02-18 07:29:11 +08:00
|
|
|
switch (enum {E} x=0) ; // expected-error {{types may not be defined in conditions}} expected-error {{cannot initialize}} \
|
|
|
|
// expected-warning{{enumeration value 'E' not handled in switch}}
|
2008-09-10 10:17:11 +08:00
|
|
|
|
2009-02-08 03:52:04 +08:00
|
|
|
if (int x=0) { // expected-note 2 {{previous definition is here}}
|
2008-11-24 07:12:31 +08:00
|
|
|
int x; // expected-error {{redefinition of 'x'}}
|
2008-09-10 10:17:11 +08:00
|
|
|
}
|
|
|
|
else
|
2008-11-24 07:12:31 +08:00
|
|
|
int x; // expected-error {{redefinition of 'x'}}
|
|
|
|
while (int x=0) int x; // expected-error {{redefinition of 'x'}} expected-note {{previous definition is here}}
|
|
|
|
while (int x=0) { int x; } // expected-error {{redefinition of 'x'}} expected-note {{previous definition is here}}
|
|
|
|
for (int x; int x=0; ) ; // expected-error {{redefinition of 'x'}} expected-note {{previous definition is here}}
|
|
|
|
for (int x; ; ) int x; // expected-error {{redefinition of 'x'}} expected-note {{previous definition is here}}
|
|
|
|
for (; int x=0; ) int x; // expected-error {{redefinition of 'x'}} expected-note {{previous definition is here}}
|
|
|
|
for (; int x=0; ) { int x; } // expected-error {{redefinition of 'x'}} expected-note {{previous definition is here}}
|
|
|
|
switch (int x=0) { default: int x; } // expected-error {{redefinition of 'x'}} expected-note {{previous definition is here}}
|
2008-09-10 10:17:11 +08:00
|
|
|
}
|
2009-11-25 08:27:52 +08:00
|
|
|
|
|
|
|
int* get_int_ptr();
|
|
|
|
|
|
|
|
void test2() {
|
|
|
|
float *ip;
|
|
|
|
if (int *ip = ip) {
|
|
|
|
}
|
|
|
|
}
|
2010-12-04 14:09:13 +08:00
|
|
|
|
|
|
|
// Make sure we do function/array decay.
|
|
|
|
void test3() {
|
|
|
|
if ("help")
|
|
|
|
(void) 0;
|
|
|
|
|
|
|
|
if (test3)
|
|
|
|
(void) 0;
|
|
|
|
}
|