Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / template / vla1.C
blobfe93440f1f2630ba1b2dd638252b8561ab1c2f6d
1 // PR c++/29226
2 // { dg-options "" }
4 template <bool>
5 static int label (int w)
7   sizeof(int[w]);
9 int a = label<false>(1);