mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-25 14:50:26 +00:00
e434b34fa3
http://reviews.llvm.org/D7101 llvm-svn: 226691
72 lines
925 B
C++
72 lines
925 B
C++
//===----------------- catch_member_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.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#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);
|
|
}
|
|
catch (md2)
|
|
{
|
|
}
|
|
catch (md1)
|
|
{
|
|
assert(false);
|
|
}
|
|
}
|
|
|
|
void test2()
|
|
{
|
|
try
|
|
{
|
|
throw nullptr;
|
|
assert(false);
|
|
}
|
|
catch (md1)
|
|
{
|
|
}
|
|
catch (md2)
|
|
{
|
|
assert(false);
|
|
}
|
|
}
|
|
|
|
#else
|
|
|
|
void test1()
|
|
{
|
|
}
|
|
|
|
void test2()
|
|
{
|
|
}
|
|
|
|
#endif
|
|
|
|
int main()
|
|
{
|
|
test1();
|
|
test2();
|
|
}
|