]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/ext/array_allocator/26875.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / ext / array_allocator / 26875.cc
1 //
2 // Copyright (C) 2006-2019 Free Software Foundation, Inc.
3 //
4 // This file is part of the GNU ISO C++ Library. This library is free
5 // software; you can redistribute it and/or modify it under the
6 // terms of the GNU General Public License as published by the
7 // Free Software Foundation; either version 3, or (at your option)
8 // any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License along
16 // with this library; see the file COPYING3. If not see
17 // <http://www.gnu.org/licenses/>.
18
19 // { dg-options "-Wno-deprecated" }
20
21 #include <ext/array_allocator.h>
22
23 // libstdc++/26875
24 int main()
25 {
26 typedef std::tr1::array<int, 1> array_type;
27 array_type Array1;
28 array_type Array2;
29
30 typedef __gnu_cxx::array_allocator<int> allocator_type;
31 allocator_type Allocator1(&Array1);
32 allocator_type Allocator2(&Array2);
33
34 try
35 {
36 Allocator1.allocate(1);
37 Allocator2.allocate(1);
38 }
39 catch (std::bad_alloc& ex)
40 {
41 // fail, rethrow
42 throw;
43 }
44
45 return 0;
46 }
47