Commit 5cb9e089 by Paolo Carlini Committed by Paolo Carlini

re PR c++/60130 (Sorry, unimplemented: mangling argument_pack_select)

2015-03-24  Paolo Carlini  <paolo.carlini@oracle.com>

	PR c++/60130
	* g++.dg/cpp0x/vt-60130.C: New.

From-SVN: r221637
parent 0dc47aa3
2015-03-24 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/60130
* g++.dg/cpp0x/vt-60130.C: New.
2015-03-24 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/61971
* g++.dg/warn/Warray-bounds-7.C: New.
......
// PR c++/60130
// { dg-do compile { target c++11 } }
#include <tuple>
template <class S, class F, class... T>
S f1(F f, T... x)
{
return std::get<0>(std::make_tuple(f(x)...));
}
template <class... T>
int f2(const T... x)
{
return std::get<0>(std::make_tuple(f1<T>([](int n){return n;}, x)...));
}
int main()
{
return f2(42);
}
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