diff options
Diffstat (limited to 'clang/test/SemaCXX/exceptions.cpp')
-rw-r--r-- | clang/test/SemaCXX/exceptions.cpp | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/clang/test/SemaCXX/exceptions.cpp b/clang/test/SemaCXX/exceptions.cpp index 5f4ff23eb77..6ac51b32e48 100644 --- a/clang/test/SemaCXX/exceptions.cpp +++ b/clang/test/SemaCXX/exceptions.cpp @@ -146,7 +146,7 @@ namespace Decay { void rval_ref() throw (int &&); // expected-error {{rvalue reference type 'int &&' is not allowed in exception specification}} expected-warning {{C++11}} -namespace ConstVolatile { +namespace ConstVolatileThrow { struct S { S() {} // expected-note{{candidate constructor not viable}} S(const S &s); // expected-note{{candidate constructor not viable}} @@ -158,3 +158,22 @@ void f() { throw CVS(); // expected-error{{no matching constructor for initialization}} } } + +namespace ConstVolatileCatch { +struct S { + S() {} + S(const volatile S &s); + +private: + S(const S &s); // expected-note {{declared private here}} +}; + +void f(); + +void g() { + try { + f(); + } catch (volatile S s) { // expected-error {{calling a private constructor}} + } +} +} |