aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-eh3.C
blob: 10dc6e36d2bb1e6da61423e9bcae634fb4d8d1f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// PR c++/56388
// { dg-require-effective-target c++11 }

int main()
{
    bool /*const*/ condition = false;

    [&]{
        try{}
        catch(...){
            if(condition){}
        }
    }();
}