blob: f9a80059bd5d8fb3e6f0a723c58d3b1f6096ff67 [file] [log] [blame]
// Test for the explicit initializer extension of C++1y
// { dg-do compile { target c++1y } }
int main()
{
int j = [i = 2]{sizeof(i); return i;}();
return (j != 2);
}