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