1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
// Contributed by Dodji Seketeli <dodji@redhat.com> // Origin: PR c++/39637 // { dg-do compile } // { dg-options "-std=gnu++0x" } template<class... Types> void f(Types...) { enum {e = sizeof(Types)}; // { dg-error "parameter packs not expanded with '...'" } enum {e1 = sizeof...(Types)}; } int main() { f(0); } // { dg-message "note" "Types" { target *-*-* } 10 }