mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-02 22:16:06 +00:00

C89 allowed a type specifier to be elided with the resulting type being int, aka implicit int behavior. This feature was subsequently removed in C99 without a deprecation period, so implementations continued to support the feature. Now, as with implicit function declarations, is a good time to reevaluate the need for this support. This patch allows -Wimplicit-int to issue warnings in C89 mode (off by default), defaults the warning to an error in C99 through C17, and disables support for the feature entirely in C2x. It also removes a warning about missing declaration specifiers that really was just an implicit int warning in disguise and other minor related cleanups.
33 lines
773 B
C++
33 lines
773 B
C++
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
// Don't crash.
|
|
|
|
template<typename,typename=int,typename=int>struct basic_string;
|
|
|
|
typedef basic_string<char> string;
|
|
|
|
|
|
|
|
template<typename aT,typename,typename oc>
|
|
struct basic_string
|
|
{
|
|
int us;
|
|
basic_string(const aT*,const oc&a=int());
|
|
|
|
int _S_construct();
|
|
|
|
int _S_construct(int);
|
|
|
|
_S_construct(); // expected-error {{a type specifier is required}}
|
|
};
|
|
|
|
template<typename _CharT,typename _Traits,typename _Alloc>
|
|
basic_string<_CharT,_Traits,_Alloc>::basic_string(const _CharT* c,const _Alloc&)
|
|
:us(_S_construct)
|
|
{string a(c);}
|
|
|
|
struct runtime_error{runtime_error(string);};
|
|
|
|
struct system_error:runtime_error{ // expected-note {{to match}}
|
|
system_error():time_error("" // expected-error 3 {{expected}} expected-note {{to match}}
|