PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / vla1.C
blobd873f2b0b06af90109d406155c395fd975ff7fe1
1 // PR c++/29226
2 // { dg-options "" }
4 template <bool>
5 static int label (int w)
7   sizeof(int[w]);
8   return 0;
10 int a = label<false>(1);