PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / pr67699.C
blobc9ff591939a118006e8dadb48812f62c57a6e335
1 // { dg-do compile }
2 // { dg-require-effective-target lto }
3 // { dg-options "-flto" }
5 template <class T> class foo {
6     foo() { int const bar[2] = {1, 1}; }
7 };
8 template class foo<int>;