2012-02-02 05:01:52 +08:00
|
|
|
//===----------------- catch_member_pointer_nullptr.cpp -------------------===//
|
|
|
|
//
|
2019-01-19 18:56:40 +08: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-02 05:01:52 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2020-04-17 22:29:15 +08:00
|
|
|
// UNSUPPORTED: no-exceptions
|
2016-05-31 20:01:32 +08:00
|
|
|
|
2012-02-02 05:01:52 +08:00
|
|
|
#include <cassert>
|
|
|
|
|
|
|
|
#if __has_feature(cxx_nullptr)
|
|
|
|
|
|
|
|
struct A
|
|
|
|
{
|
|
|
|
const int i;
|
|
|
|
int j;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef const int A::*md1;
|
|
|
|
typedef int A::*md2;
|
|
|
|
|
|
|
|
void test1()
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
throw nullptr;
|
|
|
|
assert(false);
|
|
|
|
}
|
2016-07-20 04:19:37 +08:00
|
|
|
catch (md2 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 (md1)
|
|
|
|
{
|
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void test2()
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
throw nullptr;
|
|
|
|
assert(false);
|
|
|
|
}
|
2016-07-20 04:19:37 +08:00
|
|
|
catch (md1 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 (md2)
|
|
|
|
{
|
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
void test1()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void test2()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
test1();
|
|
|
|
test2();
|
|
|
|
}
|