blob: ccdd48e4c11d44ed6e1230ffedbdd742750a2b8c [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <tuple>
// template <class... Types> class tuple;
// template <class... Types>
// class tuple_size<tuple<Types...>>
// : public integral_constant<size_t, sizeof...(Types)> { };
// XFAIL: gcc-4.9
// UNSUPPORTED: c++98, c++03
#include <tuple>
#include <array>
#include <type_traits>
template <class T, size_t Size = sizeof(std::tuple_size<T>)>
constexpr bool is_complete(int) { static_assert(Size > 0, ""); return true; }
template <class> constexpr bool is_complete(long) { return false; }
template <class T> constexpr bool is_complete() { return is_complete<T>(0); }
struct Dummy1 {};
struct Dummy2 {};
namespace std {
template <> class tuple_size<Dummy1> : public integral_constant<size_t, 0> {};
}
template <class T>
void test_complete() {
static_assert(is_complete<T>(), "");
static_assert(is_complete<const T>(), "");
static_assert(is_complete<volatile T>(), "");
static_assert(is_complete<const volatile T>(), "");
}
template <class T>
void test_incomplete() {
static_assert(!is_complete<T>(), "");
static_assert(!is_complete<const T>(), "");
static_assert(!is_complete<volatile T>(), "");
static_assert(!is_complete<const volatile T>(), "");
}
int main()
{
test_complete<std::tuple<> >();
test_complete<std::tuple<int&> >();
test_complete<std::tuple<int&&, int&, void*>>();
test_complete<std::pair<int, long> >();
test_complete<std::array<int, 5> >();
test_complete<Dummy1>();
test_incomplete<void>();
test_incomplete<int>();
test_incomplete<std::tuple<int>&>();
test_incomplete<Dummy2>();
}