blob: 66918ca516e19807fa57a84137f525a97edeb330 [file] [log] [blame]
#include <exception>
#include <stdexcept>
int main() {
try {
throw 2;
} catch (int) {
std::throw_with_nested(std::runtime_error("test"));
}
}