that was present in a prior declaration, emit a warning rather than a
hard error (which we did before, and still do with mismatched
exception specifications). Moreover, provide a fix-it hint with the
throw() clause that should be added, e.g.,
t.C:10:7: warning: 'operator new' is missing exception specification
'throw(std::bad_alloc)'
void *operator new(unsigned long sz)
^
throw(std::bad_alloc)
As part of this, disable the warning when we're missing an exception
specification on operator new, operator new[], operator delete, or
operator delete[] when exceptions are turned off (-fno-exceptions).
Fixes PR5957.
llvm-svn: 99388
43 lines
1.3 KiB
C++
43 lines
1.3 KiB
C++
// RUN: %clang_cc1 -pedantic -Wall -fixit %s -o - | %clang_cc1 -fsyntax-only -pedantic -Wall -Werror -x c++ -
|
|
|
|
/* This is a test of the various code modification hints that are
|
|
provided as part of warning or extension diagnostics. All of the
|
|
warnings will be fixed by -fixit, and the resulting file should
|
|
compile cleanly with -Werror -pedantic. */
|
|
|
|
struct C1 {
|
|
virtual void f();
|
|
static void g();
|
|
};
|
|
struct C2 : virtual public virtual C1 { }; // expected-error{{duplicate}}
|
|
|
|
virtual void C1::f() { } // expected-error{{'virtual' can only be specified inside the class definition}}
|
|
|
|
static void C1::g() { } // expected-error{{'static' can only be specified inside the class definition}}
|
|
|
|
template<int Value> struct CT { }; // expected-note{{previous use is here}}
|
|
|
|
CT<10 >> 2> ct; // expected-warning{{require parentheses}}
|
|
|
|
class C3 {
|
|
public:
|
|
C3(C3, int i = 0); // expected-error{{copy constructor must pass its first argument by reference}}
|
|
};
|
|
|
|
struct CT<0> { }; // expected-error{{'template<>'}}
|
|
|
|
template<> class CT<1> { }; // expected-error{{tag type}}
|
|
|
|
// Access declarations
|
|
class A {
|
|
protected:
|
|
int foo();
|
|
};
|
|
|
|
class B : public A {
|
|
A::foo; // expected-warning{{access declarations are deprecated}}
|
|
};
|
|
|
|
void f() throw();
|
|
void f(); // expected-warning{{missing exception specification}}
|