1 // Contributed by Dodji Seketeli <dodji@redhat.com>
2 // Origin: PR c++/39637
3 // { dg-do compile { target c++11 } }
5 template<class... Types>
9 enum {e = sizeof(Types)}; // { dg-error "parameter packs not expanded with '...'" }
10 enum {e1 = sizeof...(Types)};