/cp
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1y / lambda-init17.C
blob6c7cb449143a47759d7440e8da4fa9f1715fc5e2
1 // PR c++/71546
2 // { dg-do compile { target c++14 } }
4 namespace n { struct make_shared { }; }
6 int main()
8   int x1;
9   [e = n::make_shared (), x1]() {};