1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
// { dg-options "-std=c++0x" } // Just discard errors pointing at header files // { dg-prune-output "include" } #include <vector> #include <typeinfo> using namespace std; template< typename ... ArgTypes > void test( ArgTypes ... args ) { vector<type_info*> x = { &typeid(ArgTypes)... }; // { dg-error "" } } int main() { test( 1, 3.14f, 2.78 ); return 0; }