зеркало из https://github.com/microsoft/clang-1.git
Fix a bogus test
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46602 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
796ef3d4a3
Коммит
868d08f9e9
|
@ -13,3 +13,13 @@ void g(int (*)(const void **, const void **));
|
|||
void g(int (*compar)()) {
|
||||
}
|
||||
|
||||
|
||||
// PR1965
|
||||
int t5(b); // expected-error {{parameter list without types}}
|
||||
int t6(int x, g); // expected-error {{type specifier required for parameter 'g'}}
|
||||
|
||||
int t7(, ); // expected-error {{type specifier required}} expected-error {{type specifier required}}
|
||||
int t8(, int a); // expected-error {{type specifier required}}
|
||||
int t9(int a, ); // expected-error {{type specifier required}}
|
||||
|
||||
|
||||
|
|
|
@ -105,7 +105,7 @@ int* ret_cpp_reinterpret_cast_no_warning(double x) {
|
|||
return reinterpret_cast<int*>(x); // no-warning
|
||||
}
|
||||
|
||||
int* ret_cpp_const_cast(const x) {
|
||||
int* ret_cpp_const_cast(const int x) {
|
||||
return const_cast<int*>(&x); // expected-warning {{address of stack memory}}
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче