2014-09-21 17:33:12 +00:00
|
|
|
// { dg-options "-std=gnu++14" }
|
2012-03-27 23:13:14 +00:00
|
|
|
// { dg-do compile }
|
|
|
|
|
2015-08-28 15:33:40 +00:00
|
|
|
// Copyright (C) 2014-2015 Free Software Foundation, Inc.
|
2012-03-27 23:13:14 +00:00
|
|
|
//
|
|
|
|
// This file is part of the GNU ISO C++ Library. This library is free
|
|
|
|
// software; you can redistribute it and/or modify it under the
|
|
|
|
// terms of the GNU General Public License as published by the
|
|
|
|
// Free Software Foundation; either version 3, or (at your option)
|
|
|
|
// any later version.
|
|
|
|
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License along
|
|
|
|
// with this library; see the file COPYING3. If not see
|
|
|
|
// <http://www.gnu.org/licenses/>.
|
|
|
|
|
2014-09-21 17:33:12 +00:00
|
|
|
// libstdc++/60497
|
|
|
|
|
|
|
|
#include <tuple>
|
|
|
|
|
|
|
|
struct A;
|
|
|
|
template<typename T> struct B { T t; };
|
|
|
|
|
|
|
|
using element_type = B<A>*;
|
|
|
|
using tuple_type = std::tuple<element_type>;
|
2012-03-27 23:13:14 +00:00
|
|
|
|
2014-09-21 17:33:12 +00:00
|
|
|
tuple_type t;
|
|
|
|
const tuple_type ct;
|
2012-03-27 23:13:14 +00:00
|
|
|
|
2014-09-21 17:33:12 +00:00
|
|
|
auto a = std::get<0>(t);
|
|
|
|
auto b = std::get<0>(ct);
|
|
|
|
auto c = std::get<element_type>(t);
|
|
|
|
auto d = std::get<element_type>(ct);
|
2015-08-28 15:33:40 +00:00
|
|
|
|
|
|
|
// same again for rvalues
|
|
|
|
auto e = std::get<0>(std::move(t));
|
|
|
|
auto f = std::get<0>(std::move(ct));
|
|
|
|
auto g = std::get<element_type>(std::move(t));
|
|
|
|
auto h = std::get<element_type>(std::move(ct));
|