From b076556843574ba6beb9712502af8ed135944b83 Mon Sep 17 00:00:00 2001 From: Jason Merrill Date: Thu, 27 Feb 2014 12:06:35 -0500 Subject: [PATCH] re PR c++/58648 ([c++11] ICE with variadic template) PR c++/58648 * g++.dg/cpp0x/variadic153.C: New. From-SVN: r208202 --- gcc/testsuite/g++.dg/cpp0x/variadic153.C | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 gcc/testsuite/g++.dg/cpp0x/variadic153.C diff --git a/gcc/testsuite/g++.dg/cpp0x/variadic153.C b/gcc/testsuite/g++.dg/cpp0x/variadic153.C new file mode 100644 index 000000000000..42a92f6b2cc1 --- /dev/null +++ b/gcc/testsuite/g++.dg/cpp0x/variadic153.C @@ -0,0 +1,6 @@ +// PR c++/58648 +// { dg-require-effective-target c++11 } + +template int foo(); + +int i = foo<0>(); -- 2.47.2