OSDN Git Service

b54f022b25744633071a24c702bc8f2bc09f9000
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / backward / hash_set / 1.cc
1 // { dg-options "-Wno-deprecated" }
2
3 // 2002-04-28  Paolo Carlini  <pcarlini@unitus.it>
4 //             Peter Schmid  <schmid@snake.iap.physik.tu-darmstadt.de>
5
6 // Copyright (C) 2002, 2004, 2005, 2007 Free Software Foundation, Inc.
7 //
8 // This file is part of the GNU ISO C++ Library.  This library is free
9 // software; you can redistribute it and/or modify it under the
10 // terms of the GNU General Public License as published by the
11 // Free Software Foundation; either version 2, or (at your option)
12 // any later version.
13
14 // This library is distributed in the hope that it will be useful,
15 // but WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 // GNU General Public License for more details.
18
19 // You should have received a copy of the GNU General Public License along
20 // with this library; see the file COPYING.  If not, write to the Free
21 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
22 // USA.
23
24 // hash_set (SGI extension)
25
26 #include <hash_set>
27
28 void
29 test01()
30 {
31   bool test __attribute__((unused)) = true;
32   const int werte[] = { 1, 25, 9, 16, -36};
33   const int anzahl = sizeof(werte) / sizeof(int);
34   __gnu_cxx::hash_set<int> intTable(werte, werte + anzahl);
35 }
36                                        
37 int main()
38 {
39   test01();
40   return 0;
41 }