Lines Matching full:pack
4 // pack is a function parameter pack.
12 // template-parameter-list and the parameter pack is a template
13 // parameter pack; see 14.1. -- end note ]
40 // expected-error{{data member type contains unexpanded parameter pack}}
43 // The type T of the declarator-id of the function parameter pack
44 // shall contain a template parameter pack; each template parameter
45 // pack in T is expanded by the function parameter pack.
47 void f4(T ...args); // expected-error{{type 'T' of function parameter pack does not contain any unexpanded parameter packs}}
49 void f4i(int ... x); // expected-error{{type 'int' of function parameter pack does not contain any unexpanded parameter packs}}
60 void c(T ... []); // expected-error{{type 'T []' of function parameter pack does not contain any unexpanded parameter packs}}
63 void d(T ... x[]); // expected-error{{type 'T []' of function parameter pack does not contain any unexpanded parameter packs}}
67 void ci(int ... []); // expected-error{{type 'int []' of function parameter pack does not contain any unexpanded parameter packs}}
68 void di(int ... x[]); // expected-error{{type 'int []' of function parameter pack does not contain any unexpanded parameter packs}}