// { dg-do compile { target c++11 } } template struct tuple { static const __SIZE_TYPE__ length = sizeof...(Values); }; int a0[tuple<>::length == 0? 1 : -1]; int a1[tuple::length == 1? 1 : -1]; int a2[tuple::length == 2? 1 : -1];