Closed
Description
Bugzilla Link | 40710 |
Version | unspecified |
OS | Windows NT |
CC | @DougGregor,@hiraditya,@pcc,@zygoloid,@rnk,@smeenai,@vedantk |
Extended Description
Reduced from ICU 61:
// RUN: %clang_cc1 -triple x86_64-pc-windows-msvc19.0.0 -emit-obj -o /dev/null -O1 -fcxx-exceptions -fexceptions %s
struct T {
virtual ~T();
};
void f();
struct S {
virtual ~S();
T t_[1];
};
S::~S() { f(); }