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