Imported Upstream version 4.8.1
[platform/upstream/gcc48.git] / libstdc++-v3 / testsuite / ext / array_allocator / 26875.cc
1 //
2 // Copyright (C) 2006-2013 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 #include <ext/array_allocator.h>
20
21 // libstdc++/26875
22 int main()
23 {
24   typedef std::tr1::array<int, 1> array_type;
25   array_type Array1;
26   array_type Array2;
27
28   typedef __gnu_cxx::array_allocator<int> allocator_type;
29   allocator_type Allocator1(&Array1);
30   allocator_type Allocator2(&Array2);
31
32   try
33     {
34       Allocator1.allocate(1);
35       Allocator2.allocate(1);
36     }
37   catch (std::bad_alloc& ex)
38     {
39       // fail, rethrow
40       throw;
41     }
42     
43   return 0;
44 }
45