Commit 529b9e5a by Paolo Carlini Committed by Paolo Carlini

re PR c++/66421 (G++ fails compilation when assigning tuple created with…

re PR c++/66421 (G++ fails compilation when assigning tuple created with variadic template to auto variable)

2015-07-08  Paolo Carlini  <paolo.carlini@oracle.com>

	PR c++/66421
	* g++.dg/cpp0x/auto45.C: New.

From-SVN: r225563
parent bb927664
2015-07-08 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/66421
* g++.dg/cpp0x/auto45.C: New.
2015-07-08 Vladimir Makarov <vmakarov@redhat.com>
PR middle-end/66334
......
// PR c++/66421
// { dg-do compile { target c++11 } }
template<typename... T> struct tuple { };
template<typename... T> tuple<T...> make_tuple(T&&...) { return {}; }
template <typename... Params>
void foo(Params... params) {
auto t = make_tuple((int)params...);
}
template <typename... Params>
void bar(Params... params) {
tuple<decltype((int)params)...> t = make_tuple((int)params...);
}
int main() {
foo(1,2,3);
bar(1,2,3);
}
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