2012-02-02 05:01:52 +08:00
|
|
|
//===--------------------- catch_pointer_nullptr.cpp ----------------------===//
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2016-05-31 20:01:32 +08:00
|
|
|
// UNSUPPORTED: c++98, c++03, libcxxabi-no-exceptions
|
2015-08-20 09:22:17 +08:00
|
|
|
|
2012-02-02 05:01:52 +08:00
|
|
|
#include <cassert>
|
2015-04-03 07:26:37 +08:00
|
|
|
#include <cstdlib>
|
|
|
|
|
|
|
|
struct A {};
|
2012-02-02 05:01:52 +08:00
|
|
|
|
|
|
|
void test1()
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
throw nullptr;
|
|
|
|
assert(false);
|
|
|
|
}
|
2016-07-20 04:19:37 +08:00
|
|
|
catch (int* p)
|
2012-02-02 05:01:52 +08:00
|
|
|
{
|
2016-07-20 04:19:37 +08:00
|
|
|
assert(!p);
|
2012-02-02 05:01:52 +08:00
|
|
|
}
|
|
|
|
catch (long*)
|
|
|
|
{
|
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void test2()
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
throw nullptr;
|
|
|
|
assert(false);
|
|
|
|
}
|
2016-07-20 04:19:37 +08:00
|
|
|
catch (A* p)
|
2012-02-02 05:01:52 +08:00
|
|
|
{
|
2016-07-20 04:19:37 +08:00
|
|
|
assert(!p);
|
2012-02-02 05:01:52 +08:00
|
|
|
}
|
|
|
|
catch (int*)
|
|
|
|
{
|
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-03 07:26:37 +08:00
|
|
|
template <class Catch>
|
|
|
|
void catch_nullptr_test() {
|
|
|
|
try {
|
|
|
|
throw nullptr;
|
|
|
|
assert(false);
|
2016-07-20 04:19:37 +08:00
|
|
|
} catch (Catch c) {
|
|
|
|
assert(!c);
|
2015-04-03 07:26:37 +08:00
|
|
|
} catch (...) {
|
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-02 05:01:52 +08:00
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2015-04-03 07:26:37 +08: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::**>();
|
2012-02-02 05:01:52 +08:00
|
|
|
}
|