2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / libstdc++-v3 / testsuite / 27_io / objects / wchar_t / 2523-1_xin.cc
blob58b1de6db24dc44da4186eb2f19ae7b18f1f93c2
1 // 2003-05-01 Petur Runolfsson <peturr02@ru.is>
3 // Copyright (C) 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 2, or (at your option)
9 // any later version.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING. If not, write to the Free
18 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19 // USA.
21 // Include all the headers except for iostream.
22 #include <algorithm>
23 #include <bitset>
24 #include <complex>
25 #include <deque>
26 #include <exception>
27 #include <fstream>
28 #include <functional>
29 #include <iomanip>
30 #include <ios>
31 #include <iosfwd>
32 #include <istream>
33 #include <iterator>
34 #include <limits>
35 #include <list>
36 #include <locale>
37 #include <map>
38 #include <memory>
39 #include <new>
40 #include <numeric>
41 #include <ostream>
42 #include <queue>
43 #include <set>
44 #include <sstream>
45 #include <stack>
46 #include <stdexcept>
47 #include <streambuf>
48 #include <string>
49 #include <typeinfo>
50 #include <utility>
51 #include <valarray>
52 #include <vector>
53 #include <cassert>
54 #include <cctype>
55 #include <cerrno>
56 #include <cfloat>
57 #include <ciso646>
58 #include <climits>
59 #include <clocale>
60 #include <cmath>
61 #include <csetjmp>
62 #include <csignal>
63 #include <cstdarg>
64 #include <cstddef>
65 #include <cstdio>
66 #include <cstdlib>
67 #include <cstring>
68 #include <ctime>
69 #include <testsuite_hooks.h>
71 // Include iostream last, just to make is as difficult as possible to
72 // properly initialize the standard iostream objects.
73 #include <iostream>
75 // libstdc++/2523
76 void test02()
78 using namespace std;
79 int i;
80 wcin >> i;
81 wcout << "i == " << i << endl;
84 int
85 main()
87 test02();
88 return 0;