summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-stmtexpr1.C
blob: e461db653d4efa1a66ebe974629df2adaa93f7f3 (plain)
1
2
3
4
5
// PR c++/71946
// { dg-do compile { target c++11 } }
// { dg-options "" }

auto test = []{ int t = ({ int t1; t1 = 7; t1; }); };