2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / libstdc++-v3 / testsuite / 27_io / manipulators / standard / char / 2.cc
blob6d07434851a55278f9b34a32e51949c323c5cf5c
1 // { dg-options "-D_GLIBCXX_ASSERT -fno-implicit-templates" }
3 // Copyright (C) 2001, 2002 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 // Some members need to be explicitly instantiated, so that users can build
22 // their own code with -fno-implicit-templates and not suffer from a zillion
23 // link errors.
25 #include <fstream>
26 #include <istream>
27 #include <ostream>
28 #include <sstream>
29 #include <iomanip>
30 #include <testsuite_hooks.h>
33 // PR libstdc++/3829
34 void
35 test01()
37 using namespace std;
38 bool test __attribute__((unused)) = true;
39 string x (" this is text");
40 istringstream sin (x);
41 ostringstream sout;
43 // same order as in bits/std_iomanip.h
44 sin >> resetiosflags(ios_base::dec)
45 >> setiosflags(ios_base::dec)
46 >> setbase(ios_base::dec)
47 >> setfill('c')
48 >> setprecision(5)
49 >> setw(20)
50 >> ws;
51 VERIFY(sin.good());
53 sout << resetiosflags(ios_base::dec)
54 << setiosflags(ios_base::dec)
55 << setbase(ios_base::dec)
56 << setfill('c')
57 << setprecision(5)
58 << setw(20)
59 << ends << flush << endl;
60 VERIFY(sout.good());
64 int
65 main()
67 test01();
68 return 0;