mirror of https://github.com/llvm-mirror/libcxxabi
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			75 lines
		
	
	
		
			1023 B
		
	
	
	
		
			C++
		
	
			
		
		
	
	
			75 lines
		
	
	
		
			1023 B
		
	
	
	
		
			C++
		
	
//===----------------- catch_member_pointer_nullptr.cpp -------------------===//
 | 
						|
//
 | 
						|
// 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
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
 | 
						|
// UNSUPPORTED: libcxxabi-no-exceptions
 | 
						|
 | 
						|
#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 p)
 | 
						|
    {
 | 
						|
        assert(!p);
 | 
						|
    }
 | 
						|
    catch (md1)
 | 
						|
    {
 | 
						|
        assert(false);
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
void test2()
 | 
						|
{
 | 
						|
    try
 | 
						|
    {
 | 
						|
        throw nullptr;
 | 
						|
        assert(false);
 | 
						|
    }
 | 
						|
    catch (md1 p)
 | 
						|
    {
 | 
						|
        assert(!p);
 | 
						|
    }
 | 
						|
    catch (md2)
 | 
						|
    {
 | 
						|
        assert(false);
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
#else
 | 
						|
 | 
						|
void test1()
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
void test2()
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
#endif
 | 
						|
 | 
						|
int main()
 | 
						|
{
 | 
						|
    test1();
 | 
						|
    test2();
 | 
						|
}
 |