2008-09-10 06:17:11 +04:00
// RUN: clang -fsyntax-only -verify %s
void test ( ) {
2008-09-11 03:34:50 +04:00
int x ;
if ( x ) + + x ;
2008-09-10 06:17:11 +04:00
if ( int x = 0 ) + + x ;
typedef int arr [ 10 ] ;
2008-11-24 02:12:31 +03:00
while ( arr x = 0 ) ; // expected-error {{an array type is not allowed here}} expected-error {{initialization with '{...}' expected for array}}
while ( int f ( ) = 0 ) ; // expected-error {{a function type is not allowed here}}
2008-09-10 06:17:11 +04:00
struct S { } s ;
2009-01-14 18:45:31 +03: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 02:12:31 +03:00
switch ( s ) { } // expected-error {{statement requires expression of integer type ('struct S' invalid)}}
2008-09-10 06:17:11 +04:00
2009-01-14 18:45:31 +03:00
while ( struct S { } x = 0 ) ; // expected-error {{types may not be defined in conditions}} expected-error {{cannot initialize 'x' with an rvalue of type 'int'}} expected-error {{value of type 'struct S' is not contextually convertible to 'bool'}}
while ( struct { } x = 0 ) ; // expected-error {{types may not be defined in conditions}} expected-error {{cannot initialize 'x' with an rvalue of type 'int'}} expected-error {{value of type 'struct <anonymous>' is not contextually convertible to 'bool'}}
2008-11-24 02:12:31 +03:00
switch ( enum { E } x = 0 ) ; // expected-error {{types may not be defined in conditions}} expected-error {{incompatible type}}
2008-09-10 06:17:11 +04:00
2008-11-24 02:12:31 +03:00
if ( int x = 0 ) { // expected-note {{previous definition is here}}
int x ; // expected-error {{redefinition of 'x'}}
2008-09-10 06:17:11 +04:00
}
else
2008-11-24 02:12:31 +03: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 06:17:11 +04:00
}