/cp
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1y / lambda-init.C
blobb474893be8cee44cf63b718080bb57472a93ee5a
1 // Test for the explicit initializer extension of C++14
2 // { dg-do compile { target c++14 } }
4 int main()
6   int j = [i = 2]{sizeof(i); return i;}();
7   return (j != 2);