1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
|
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// UNSUPPORTED: libcpp-no-exceptions
// <exception>
// class nested_exception;
// template<class T> void throw_with_nested [[noreturn]] (T&& t);
#include <exception>
#include <cstdlib>
#include <cassert>
#include "test_macros.h"
class A
{
int data_;
public:
explicit A(int data) : data_(data) {}
friend bool operator==(const A& x, const A& y) {return x.data_ == y.data_;}
};
class B
: public std::nested_exception
{
int data_;
public:
explicit B(int data) : data_(data) {}
friend bool operator==(const B& x, const B& y) {return x.data_ == y.data_;}
};
#if TEST_STD_VER > 11
struct Final final {};
#endif
int main()
{
{
try
{
A a(3);
std::throw_with_nested(a);
assert(false);
}
catch (const A& a)
{
assert(a == A(3));
}
}
{
try
{
A a(4);
std::throw_with_nested(a);
assert(false);
}
catch (const std::nested_exception& e)
{
assert(e.nested_ptr() == nullptr);
}
}
{
try
{
B b(5);
std::throw_with_nested(b);
assert(false);
}
catch (const B& b)
{
assert(b == B(5));
}
}
{
try
{
B b(6);
std::throw_with_nested(b);
assert(false);
}
catch (const std::nested_exception& e)
{
assert(e.nested_ptr() == nullptr);
const B& b = dynamic_cast<const B&>(e);
assert(b == B(6));
}
}
{
try
{
int i = 7;
std::throw_with_nested(i);
assert(false);
}
catch (int i)
{
assert(i == 7);
}
}
{
try
{
std::throw_with_nested("String literal");
assert(false);
}
catch (const char *)
{
}
}
#if TEST_STD_VER > 11
{
try
{
std::throw_with_nested(Final());
assert(false);
}
catch (const Final &)
{
}
}
#endif
}
|