(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
lambda/
lambda-eh2.C
// PR c++/47263
// PR c++/49260
// { dg-options "-fno-asynchronous-unwind-tables -fno-dwarf2-cfi-asm" }
// { dg-do run { target { c++11 && { ! c++17 } } } }

#include <exception>

int main( void )
{
  std::set_unexpected( []{ throw 0; } ); // { dg-warning "deprecated" }
  try
    {
      []() throw( int ) { throw nullptr; }();	// { dg-warning "deprecated" }
    }
  catch( int )
    { }
}