blob: 1ef510a484a90e333835e86cf6ea1317c896f823 [file] [log] [blame]
// PR c++/47263
// PR c++/49260
// { dg-options "-fno-asynchronous-unwind-tables -fno-dwarf2-cfi-asm" }
// { dg-do run { target c++11 } }
#include <exception>
int main( void )
{
std::set_unexpected( []{ throw 0; } );
try
{
[]() throw( int ) { throw nullptr; }();
}
catch( int )
{ }
}