blob: d873f2b0b06af90109d406155c395fd975ff7fe1 [file] [log] [blame]
// PR c++/29226
// { dg-options "" }
template <bool>
static int label (int w)
{
sizeof(int[w]);
return 0;
}
int a = label<false>(1);