Files
clang-p2996/clang/test/CXX/expr/p13.cpp
Richard Smith 82da19ddb3 [c++1z] P0003R5: Removing dynamic exception specifications.
We continue to support dynamic exception specifications in C++1z as an
extension, but produce an error-by-default warning when we encounter one. This
allows users to opt back into the feature with a warning flag, and implicitly
opts system headers back into the feature should they happen to use it.

There is one semantic change implied by P0003R5 but not implemented here:
violating a throw() exception specification should now call std::terminate
directly instead of calling std::unexpected(), but since P0003R5 also removes
std::unexpected() and std::set_unexpected, and the default unexpected handler
calls std::terminate(), a conforming C++1z program cannot tell that we are
still calling it. The upside of this strategy is perfect backwards
compatibility; the downside is that we don't get the more efficient 'noexcept'
codegen for 'throw()'.

llvm-svn: 289019
2016-12-08 02:49:07 +00:00

52 lines
1.6 KiB
C++

// RUN: %clang_cc1 -std=c++1z -verify %s -fexceptions -fcxx-exceptions -Wno-dynamic-exception-spec
struct X {};
struct Y : X {};
using A = void (*)() noexcept;
using B = void (*)();
using C = void (X::*)() noexcept;
using D = void (X::*)();
using E = void (Y::*)() noexcept;
using F = void (Y::*)();
void f(A a, B b, C c, D d, E e, F f, bool k) {
a = k ? a : b; // expected-error {{different exception specifications}}
b = k ? a : b;
c = k ? c : d; // expected-error {{different exception specifications}}
d = k ? c : d;
e = k ? c : f; // expected-error {{different exception specifications}}
e = k ? d : e; // expected-error {{different exception specifications}}
f = k ? c : f;
f = k ? d : e;
const A ak = a;
const B bk = b;
const A &ak2 = k ? ak : ak;
const A &ak3 = k ? ak : bk; // expected-error {{could not bind}}
const B &bk3 = k ? ak : bk;
}
namespace dynamic_exception_spec {
// Prior to P0012, we had:
// "[...] the target entity shall allow at least the exceptions allowed
// by the source value in the assignment or initialization"
//
// There's really only one way we can coherently apply this to conditional
// expressions: this must hold no matter which branch was taken.
using X = void (*)() throw(int);
using Y = void (*)() throw(float);
using Z = void (*)() throw(int, float);
void g(X x, Y y, Z z, bool k) {
x = k ? X() : Y(); // expected-warning {{not superset}}
y = k ? X() : Y(); // expected-warning {{not superset}}
z = k ? X() : Y();
x = k ? x : y; // expected-warning {{not superset}}
y = k ? x : y; // expected-warning {{not superset}}
z = k ? x : y;
}
}