]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/30_threads/promise/cons/alloc_min.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 30_threads / promise / cons / alloc_min.cc
CommitLineData
52066eae 1// { dg-do compile { target c++11 } }
a58a38b3
JW
2// { dg-require-cstdint "" }
3// { dg-require-gthreads "" }
a58a38b3 4
85ec4feb 5// Copyright (C) 2011-2018 Free Software Foundation, Inc.
a58a38b3
JW
6//
7// This file is part of the GNU ISO C++ Library. This library is free
8// software; you can redistribute it and/or modify it under the
9// terms of the GNU General Public License as published by the
10// Free Software Foundation; either version 3, or (at your option)
11// any later version.
12
13// This library is distributed in the hope that it will be useful,
14// but WITHOUT ANY WARRANTY; without even the implied warranty of
15// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16// GNU General Public License for more details.
17
18// You should have received a copy of the GNU General Public License along
19// with this library; see the file COPYING3. If not see
20// <http://www.gnu.org/licenses/>.
21
22// Test that promise can use a minimal C++11 allocator
23// and doesn't rely on C++98 allocator interface.
24
25#include <future>
26#include <testsuite_allocator.h>
27
28using std::promise;
29using std::allocator_arg;
30using std::tuple;
31
32typedef promise<int> p;
33typedef promise<int&> pr;
34typedef promise<void> pv;
35__gnu_test::SimpleAllocator<p> a;
36
37tuple<p, pr, pv> t1{ allocator_arg, a };
38tuple<p, pr, pv> t2{ allocator_arg, a, p{}, pr{}, pv{} };