1// 2003-06-30 peturr02@ru.is
2
3// Copyright (C) 2003 Free Software Foundation
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.
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 COPYING.  If not, write to the Free
18// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19// USA.
20
21#include <sstream>
22#include <iostream>
23#include <locale>
24#include <testsuite_hooks.h>
25
26#ifdef _GLIBCXX_USE_WCHAR_T
27// libstdc++/9828
28void test01()
29{
30  using namespace std;
31  bool test __attribute__((unused)) = true;
32
33  typedef num_put<char> np_t;
34
35  ostringstream stream;
36  const np_t& np = use_facet<np_t>(stream.getloc());
37
38  np.put(stream, wcout, ' ', static_cast<long>(10));
39  VERIFY( stream.str() == "10" );
40}
41#endif
42
43int main()
44{
45#ifdef _GLIBCXX_USE_WCHAR_T
46  test01();
47#endif
48  return 0;
49}
50