You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
980 B
C++
35 lines
980 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++98, c++03
|
|
|
|
#include <tuple>
|
|
#include <type_traits>
|
|
|
|
int main(int, char**)
|
|
{
|
|
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@__tuple:* 2 {{static_assert failed}}
|
|
|
|
|
|
return 0;
|
|
}
|