]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/27_io/basic_ios/imbue/14072.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_ios / imbue / 14072.cc
1 // 2004-02-09 Petur Runolfsson <peturr02@ru.is>
2
3 // Copyright (C) 2004-2019 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 3, or (at your option)
9 // any later version.
10
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.
15
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING3. If not see
18 // <http://www.gnu.org/licenses/>.
19
20
21 // 27.4.4.2 basic_ios member functions
22
23 #include <sstream>
24 #include <locale>
25 #include <typeinfo>
26 #include <testsuite_hooks.h>
27 #include <testsuite_character.h>
28
29 // libstdc++/14072
30 void test01()
31 {
32 using namespace std;
33
34 locale loc;
35 loc = locale(loc, new ctype<__gnu_test::pod_uchar>());
36 loc = locale(loc, new num_get<__gnu_test::pod_uchar>());
37 loc = locale(loc, new num_put<__gnu_test::pod_uchar>());
38
39 locale::global(loc);
40 basic_stringstream<__gnu_test::pod_uchar> s;
41 s << "10\n";
42 s.seekg(0, ios_base::beg);
43 s.imbue(locale::classic());
44 locale::global(locale::classic());
45 loc = locale::classic();
46
47 try
48 {
49 s.widen('\0');
50 }
51 catch (bad_cast&)
52 {
53 }
54
55 s.clear();
56
57 try
58 {
59 int i = 0;
60 s << i;
61 }
62 catch (bad_cast&)
63 {
64 }
65
66 s.clear();
67
68 try
69 {
70 int i = 0;
71 s >> i;
72 }
73 catch (bad_cast&)
74 {
75 }
76 }
77
78 int main()
79 {
80 test01();
81 return 0;
82 }