
The SFINAE isn't required, since the primary `tuple` class already does the SFINAE checks. This removes a bit of code that was only used for these constraints. This also moves the `tuple_element` specialization for `tuple` to `__fwd/tuple.h` to avoid a dependency on `__tuple/sfinae_helpers.h` (which should be moved in a follow-up).
27 lines
879 B
C++
27 lines
879 B
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// <tuple>
|
|
|
|
// template <class... Types> class tuple;
|
|
|
|
// template <size_t I, class... Types>
|
|
// struct tuple_element<I, tuple<Types...> >
|
|
// {
|
|
// typedef Ti type;
|
|
// };
|
|
|
|
// UNSUPPORTED: c++03
|
|
|
|
#include <tuple>
|
|
|
|
using T = std::tuple<int, long, void*>;
|
|
using E1 = typename std::tuple_element<1, T &>::type; // expected-error{{undefined template}}
|
|
using E2 = typename std::tuple_element<3, T>::type;
|
|
using E3 = typename std::tuple_element<4, T const>::type; // expected-error@*:* 2 {{out of bounds index}}
|