1 // { dg-options "-std=gnu++0x" }
4 // Copyright (C) 2011 Free Software Foundation, Inc.
6 // This file is part of the GNU ISO C++ Library. This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 3, or (at your option)
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING3. If not see
19 // <http://www.gnu.org/licenses/>.
21 // 20.4.2.1 [tuple.cnstr] Allocator-extended constructors
32 // A non-copyable and non-movable type
35 typedef MyAlloc allocator_type;
37 explicit Type(Tag0) { }
38 Type(std::allocator_arg_t, MyAlloc, Tag1) { }
39 Type(Tag2, MyAlloc) { }
41 Type(const Type&) = delete;
42 Type(Type&&) = delete;
43 Type& operator=(const Type&) = delete;
44 Type& operator=(Type&&) = delete;
49 using std::allocator_arg;
57 // N.B. cannot use Tag0 with uses-allocator construction, because
58 // uses_allocator<Type, MyAlloc> is true but no suitable cosntructor
61 tuple<Type> t2(allocator_arg, a, tag1);
62 tuple<Type> t3(allocator_arg, a, tag2);
64 tuple<Type, Type> t4(allocator_arg, a, tag1, tag2);
66 tuple<Type, Type, Type> t5(allocator_arg, a, tag2, tag1, tag2);