teak-llvm/clang/test/CodeGenCXX/destructor-crash.cpp
Davide Italiano 8c93d5eddc [Codegen] Don't crash if destructor is not accessible.
Testcase provided, in the PR, by Christian Shelton and
reduced by David Majnemer.

PR:		23584
Differential Revision:	http://reviews.llvm.org/D10508
Reviewed by:	rnk

llvm-svn: 240242
2015-06-21 16:33:50 +00:00

20 lines
173 B
C++

// RUN: %clang_cc1 %s -emit-llvm -std=c++11 -o %t
struct A {
~A();
};
struct B {
A a;
};
struct C {
union {
B b;
};
~C() noexcept;
};
C::~C() noexcept {}