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}}
Improve 0-argument -Wvexing-parse diagnostic by adding notes with fix-its:
- If the declarator is at the start of a line, and the previous line contained
another declarator and ended with a comma, then that comma was probably a
typo for a semicolon:
int n = 0, m = 1, l = 2, // k = 5;
myImportantFunctionCall(); // oops!
- If removing the parentheses would correctly initialize the object, then
produce a note suggesting that fix.
- Otherwise, if there is a simple initializer we can suggest which performs
value-initialization, then provide a note suggesting a correction to that
initializer.
Sema::Declarator now tracks the location of the comma prior to the declarator in
the declaration, if there is one, to facilitate providing the note. The code to
determine an appropriate initializer from the -Wuninitialized warning has been
factored out to allow use in both that and -Wvexing-parse.
llvm-svn: 148072
2012-01-13 07:53:29 +08:00
while ( int f ( ) = 0 ) ; // expected-warning {{interpreted as a function declaration}} expected-note {{initializer}} 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:12 +08:00
while ( struct NewS * x = 0 ) ;
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 } } \
2012-02-15 06:14:32 +08:00
/ / expected - warning { { enumeration value ' E ' not handled in switch } } expected - warning { { switch statement has empty body } } \
// expected-note{{put the semicolon on a separate line}}
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 ;
2011-12-10 05:42:37 +08:00
if ( test3 ) / / expected - warning { { address of function ' test3 ' will always evaluate to ' true ' } } \
expected - note { { prefix with the address - of operator to silence this warning } }
2010-12-04 14:09:13 +08:00
( void ) 0 ;
}
2011-12-06 12:48:01 +08:00
void test4 ( bool ( & x ) ( void ) ) {
while ( x ) ;
}