Commit 18c1e9e0 by Paolo Carlini Committed by Paolo Carlini

re PR c++/79583 (ICE (internal compiler error) upon instantiation of class…

re PR c++/79583 (ICE (internal compiler error) upon instantiation of class template with `auto` template parameter containing inner class template)

2017-05-25  Paolo Carlini  <paolo.carlini@oracle.com>

	PR c++/79583
	* g++.dg/cpp0x/pr79583.C: New.

From-SVN: r248451
parent 2673d192
2017-05-25 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/79583
* g++.dg/cpp0x/pr79583.C: New.
2017-05-25 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/68578
* g++.dg/cpp1y/pr68578.C: New.
......
// { dg-do compile { target c++11 } }
template < auto > // { dg-error "parameter" }
struct Outer
{
template < int >
struct Inner { };
};
Outer<0> a{};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment