2021-11-17 16:25:01 -05:00
|
|
|
//===----------------------------------------------------------------------===//
|
2012-02-01 21:01:52 +00:00
|
|
|
//
|
2019-01-19 10:56:40 +00:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2012-02-01 21:01:52 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2020-07-08 16:38:54 -04:00
|
|
|
// Catching an exception thrown as nullptr was not properly handled before
|
|
|
|
// 2f984cab4fa7, which landed in macOS 10.13
|
2023-03-18 13:34:29 -04:00
|
|
|
// XFAIL: stdlib=apple-libc++ && target={{.+}}-apple-macosx10.{{9|10|11|12}}
|
2020-07-08 16:38:54 -04:00
|
|
|
|
2020-06-01 10:38:23 -04:00
|
|
|
// UNSUPPORTED: c++03
|
2020-04-17 10:29:15 -04:00
|
|
|
// UNSUPPORTED: no-exceptions
|
2015-08-20 01:22:17 +00:00
|
|
|
|
2012-02-01 21:01:52 +00:00
|
|
|
#include <cassert>
|
2015-04-02 23:26:37 +00:00
|
|
|
#include <cstdlib>
|
|
|
|
|
|
|
|
struct A {};
|
2012-02-01 21:01:52 +00:00
|
|
|
|
|
|
|
void test1()
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
throw nullptr;
|
|
|
|
assert(false);
|
|
|
|
}
|
2016-07-19 20:19:37 +00:00
|
|
|
catch (int* p)
|
2012-02-01 21:01:52 +00:00
|
|
|
{
|
2016-07-19 20:19:37 +00:00
|
|
|
assert(!p);
|
2012-02-01 21:01:52 +00:00
|
|
|
}
|
|
|
|
catch (long*)
|
|
|
|
{
|
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void test2()
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
throw nullptr;
|
|
|
|
assert(false);
|
|
|
|
}
|
2016-07-19 20:19:37 +00:00
|
|
|
catch (A* p)
|
2012-02-01 21:01:52 +00:00
|
|
|
{
|
2016-07-19 20:19:37 +00:00
|
|
|
assert(!p);
|
2012-02-01 21:01:52 +00:00
|
|
|
}
|
|
|
|
catch (int*)
|
|
|
|
{
|
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-02 23:26:37 +00:00
|
|
|
template <class Catch>
|
|
|
|
void catch_nullptr_test() {
|
|
|
|
try {
|
|
|
|
throw nullptr;
|
|
|
|
assert(false);
|
2016-07-19 20:19:37 +00:00
|
|
|
} catch (Catch c) {
|
|
|
|
assert(!c);
|
2015-04-02 23:26:37 +00:00
|
|
|
} catch (...) {
|
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-01 21:01:52 +00:00
|
|
|
|
2020-10-08 13:36:33 -04:00
|
|
|
int main(int, char**)
|
2012-02-01 21:01:52 +00:00
|
|
|
{
|
2015-04-02 23:26:37 +00:00
|
|
|
// catch naked nullptrs
|
|
|
|
test1();
|
|
|
|
test2();
|
|
|
|
|
|
|
|
catch_nullptr_test<int*>();
|
|
|
|
catch_nullptr_test<int**>();
|
|
|
|
catch_nullptr_test<int A::*>();
|
|
|
|
catch_nullptr_test<const int A::*>();
|
|
|
|
catch_nullptr_test<int A::**>();
|
2020-10-08 13:36:33 -04:00
|
|
|
|
|
|
|
return 0;
|
2012-02-01 21:01:52 +00:00
|
|
|
}
|