// Contributed by Dodji Seketeli // Origin: PR c++/39637 // { dg-do compile { target c++11 } } template void f(Types...) { enum {e = sizeof(Types)}; // { dg-error "parameter packs not expanded with '...'" } enum {e1 = sizeof...(Types)}; } int main() { f(0); }