re PR libstdc++/26875 (Array allocator use count is shared between array_allocator...
[gcc.git] / libstdc++-v3 / testsuite / ext / array_allocator / 26875.cc
1 //
2 // Copyright (C) 2006 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 2, 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 COPYING. If not, write to the Free
17 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
18 // USA.
19
20 #include <ext/array_allocator.h>
21
22 // libstdc++/26875
23 int main()
24 {
25 typedef std::tr1::array<int, 1> array_type;
26 array_type Array1;
27 array_type Array2;
28
29 typedef __gnu_cxx::array_allocator<int> allocator_type;
30 allocator_type Allocator1(&Array1);
31 allocator_type Allocator2(&Array2);
32
33 try
34 {
35 Allocator1.allocate(1);
36 Allocator2.allocate(1);
37 }
38 catch (std::bad_alloc& ex)
39 {
40 // fail, rethrow
41 throw;
42 }
43
44 return 0;
45 }
46