diff options
Diffstat (limited to 'test/CXX/basic/basic.stc/basic.stc.dynamic')
| -rw-r--r-- | test/CXX/basic/basic.stc/basic.stc.dynamic/p2-noexceptions.cpp | 13 | ||||
| -rw-r--r-- | test/CXX/basic/basic.stc/basic.stc.dynamic/p2.cpp | 9 | 
2 files changed, 19 insertions, 3 deletions
| diff --git a/test/CXX/basic/basic.stc/basic.stc.dynamic/p2-noexceptions.cpp b/test/CXX/basic/basic.stc/basic.stc.dynamic/p2-noexceptions.cpp new file mode 100644 index 0000000000000..4567c469e817a --- /dev/null +++ b/test/CXX/basic/basic.stc/basic.stc.dynamic/p2-noexceptions.cpp @@ -0,0 +1,13 @@ +// RUN: %clang_cc1 -fsyntax-only -verify %s +namespace std { +  class bad_alloc { }; +   +  typedef __SIZE_TYPE__ size_t; +} + +class foo { virtual ~foo(); }; + +void* operator new(std::size_t);  +void* operator new[](std::size_t); +void operator delete(void*); +void operator delete[](void*); diff --git a/test/CXX/basic/basic.stc/basic.stc.dynamic/p2.cpp b/test/CXX/basic/basic.stc/basic.stc.dynamic/p2.cpp index f4860bb9babfb..37a4f976badad 100644 --- a/test/CXX/basic/basic.stc/basic.stc.dynamic/p2.cpp +++ b/test/CXX/basic/basic.stc/basic.stc.dynamic/p2.cpp @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -fsyntax-only -verify %s +// RUN: %clang_cc1 -fsyntax-only -fexceptions -verify %s  int *use_new(int N) {    if (N == 1)      return new int; @@ -19,7 +19,10 @@ namespace std {    typedef __SIZE_TYPE__ size_t;  } -void* operator new(std::size_t) throw(std::bad_alloc);  +void* operator new(std::size_t) throw(std::bad_alloc); // expected-note{{previous declaration}}  void* operator new[](std::size_t) throw(std::bad_alloc);  -void operator delete(void*) throw();  +void operator delete(void*) throw(); // expected-note{{previous declaration}}  void operator delete[](void*) throw(); + +void* operator new(std::size_t); // expected-warning{{'operator new' is missing exception specification 'throw(std::bad_alloc)'}} +void operator delete(void*); // expected-warning{{'operator delete' is missing exception specification 'throw()'}} | 
