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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2015-08-20 09:22:17 +08:00
|
|
|
// UNSUPPORTED: c++98, c++03
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
catch (int*)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
catch (long*)
|
|
|
|
{
|
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void test2()
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
throw nullptr;
|
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
catch (A*)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
catch (int*)
|
|
|
|
{
|
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-03 07:26:37 +08:00
|
|
|
template <class Catch>
|
|
|
|
void catch_nullptr_test() {
|
|
|
|
try {
|
|
|
|
throw nullptr;
|
|
|
|
assert(false);
|
|
|
|
} catch (Catch) {
|
|
|
|
// nothing todo
|
|
|
|
} 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
|
|
|
}
|