// Contributed by Dodji Seketeli // Origin: PR c++/39637 // { dg-options "-std=gnu++0x" } // { dg-do "compile" } template 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 }