1// PR c++/29226
2// { dg-options "" }
3
4template <bool>
5static int label (int w)
6{
7  sizeof(int[w]);
8}
9int a = label<false>(1);
10