blob: 39776822cbda4b9e3aa96448c2859c09e09c9cc2 [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001//===----------------------------------------------------------------------===//
2//
Howard Hinnantf5256e12010-05-11 21:36:01 +00003// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004//
Howard Hinnantb64f8b02010-11-16 22:09:02 +00005// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00007//
8//===----------------------------------------------------------------------===//
9
10// <tuple>
11
12// template <class... Types> class tuple;
13
14// template <class Alloc>
15// tuple(allocator_arg_t, const Alloc& a);
16
Eric Fiselierf0630522015-02-19 02:10:42 +000017// UNSUPPORTED: c++98, c++03
18
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000019#include <tuple>
20#include <cassert>
21
Marshall Clowe27dbcf2013-12-02 17:00:56 +000022#include "DefaultOnly.h"
Marshall Clowebedffd2013-12-02 18:08:31 +000023#include "allocators.h"
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000024#include "../alloc_first.h"
25#include "../alloc_last.h"
26
27int main()
28{
29 {
30 std::tuple<> t(std::allocator_arg, A1<int>());
31 }
32 {
33 std::tuple<int> t(std::allocator_arg, A1<int>());
34 assert(std::get<0>(t) == 0);
35 }
36 {
37 std::tuple<DefaultOnly> t(std::allocator_arg, A1<int>());
38 assert(std::get<0>(t) == DefaultOnly());
39 }
40 {
41 assert(!alloc_first::allocator_constructed);
42 std::tuple<alloc_first> t(std::allocator_arg, A1<int>(5));
43 assert(alloc_first::allocator_constructed);
44 assert(std::get<0>(t) == alloc_first());
45 }
46 {
47 assert(!alloc_last::allocator_constructed);
48 std::tuple<alloc_last> t(std::allocator_arg, A1<int>(5));
49 assert(alloc_last::allocator_constructed);
50 assert(std::get<0>(t) == alloc_last());
51 }
52 {
53 alloc_first::allocator_constructed = false;
54 std::tuple<DefaultOnly, alloc_first> t(std::allocator_arg, A1<int>(5));
55 assert(std::get<0>(t) == DefaultOnly());
56 assert(alloc_first::allocator_constructed);
57 assert(std::get<1>(t) == alloc_first());
58 }
59 {
60 alloc_first::allocator_constructed = false;
61 alloc_last::allocator_constructed = false;
62 std::tuple<DefaultOnly, alloc_first, alloc_last> t(std::allocator_arg,
63 A1<int>(5));
64 assert(std::get<0>(t) == DefaultOnly());
65 assert(alloc_first::allocator_constructed);
66 assert(std::get<1>(t) == alloc_first());
67 assert(alloc_last::allocator_constructed);
68 assert(std::get<2>(t) == alloc_last());
69 }
70 {
71 alloc_first::allocator_constructed = false;
72 alloc_last::allocator_constructed = false;
73 std::tuple<DefaultOnly, alloc_first, alloc_last> t(std::allocator_arg,
74 A2<int>(5));
75 assert(std::get<0>(t) == DefaultOnly());
76 assert(!alloc_first::allocator_constructed);
77 assert(std::get<1>(t) == alloc_first());
78 assert(!alloc_last::allocator_constructed);
79 assert(std::get<2>(t) == alloc_last());
80 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000081}