blob: 10dc6e36d2bb1e6da61423e9bcae634fb4d8d1f7 [file] [log] [blame]
// PR c++/56388
// { dg-require-effective-target c++11 }
int main()
{
bool /*const*/ condition = false;
[&]{
try{}
catch(...){
if(condition){}
}
}();
}