Commit 4573e50a by Paolo Carlini Committed by Paolo Carlini

re PR c++/61924 ([C++11] ICE in instantiate_template_1, at cp/pt.c:15618)

2014-12-12  Paolo Carlini  <paolo.carlini@oracle.com>

	PR c++/61924
	* g++.dg/cpp0x/pr61924.C: New.

From-SVN: r218690
parent e0dd6391
2014-12-12 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/61924
* g++.dg/cpp0x/pr61924.C: New.
2014-12-12 Vladimir Makarov <vmakarov@redhat.com> 2014-12-12 Vladimir Makarov <vmakarov@redhat.com>
PR target/64110 PR target/64110
......
// PR c++/61924
// { dg-do compile { target c++11 } }
struct function
{
template < typename _Functor > function (_Functor); // { dg-error "never defined" }
};
template < typename > struct RetryingRpc
{
template < typename StubType> RetryingRpc (StubType, function =[]{});
};
void fn()
{
RetryingRpc<int> rpc(0, []{});
}
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