mirror of git://gcc.gnu.org/git/gcc.git
re PR c++/52844 (ICE)
2014-04-10 Paolo Carlini <paolo.carlini@oracle.com> PR c++/52844 * g++.dg/cpp0x/variadic156.C: New. From-SVN: r209276
This commit is contained in:
parent
0e2f1313f1
commit
87c66338d7
|
|
@ -1,3 +1,8 @@
|
||||||
|
2014-04-10 Paolo Carlini <paolo.carlini@oracle.com>
|
||||||
|
|
||||||
|
PR c++/52844
|
||||||
|
* g++.dg/cpp0x/variadic156.C: New.
|
||||||
|
|
||||||
2014-04-10 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
|
2014-04-10 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
|
||||||
|
|
||||||
* gcc.target/s390/htm-builtins-compile-1.c: Replace long long with
|
* gcc.target/s390/htm-builtins-compile-1.c: Replace long long with
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
// PR c++/52844
|
||||||
|
// { dg-do compile { target c++11 } }
|
||||||
|
|
||||||
|
template < class > struct V { };
|
||||||
|
template < int...Is > void f ( V < Is...>) { } // { dg-error "mismatch|type" }
|
||||||
|
auto g ( ) -> decltype ( f ( V < long > ( ) ) ) ; // { dg-error "matching" }
|
||||||
Loading…
Reference in New Issue