2016-02-05 04:05:40 +08:00
// RUN: %clang_cc1 -fsyntax-only -std=c++14 -verify %s
auto check1 ( ) {
return 1 ;
return s ; // expected-error {{use of undeclared identifier 's'}}
}
int test = 11 ; // expected-note {{'test' declared here}}
auto check2 ( ) {
return " s " ;
return tes ; // expected-error {{use of undeclared identifier 'tes'; did you mean 'test'?}}
}
2016-02-17 03:16:20 +08:00
namespace BarNamespace {
namespace NestedNamespace { // expected-note {{'BarNamespace::NestedNamespace' declared here}}
typedef int type ;
}
}
struct FooRecord { } ;
FooRecord : : NestedNamespace : : type x ; // expected-error {{no member named 'NestedNamespace' in 'FooRecord'; did you mean 'BarNamespace::NestedNamespace'?}}
2016-07-01 04:24:30 +08:00
void cast_expr ( int g ) { + int ( n ) ( g ) ; } // expected-error {{undeclared identifier 'n'}}