blob: 6af4826c2d88fb2c21f4a651a22af8f63e259029 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// <locale>
// class moneypunct<charT, International>
// charT decimal_point() const;
// The C++ and C standards are silent.
// POSIX standard is being followed (as a guideline).
#include <locale>
#include <limits>
#include <cassert>
#include "test_macros.h"
typedef std::moneypunct<char> F;
class Fnf
: public std::moneypunct<char, false>
{
public:
explicit Fnf(std::size_t refs = 0)
: std::moneypunct<char, false>(refs) {}
};
class Fnt
: public std::moneypunct<char, true>
{
public:
explicit Fnt(std::size_t refs = 0)
: std::moneypunct<char, true>(refs) {}
};
class Fwf
: public std::moneypunct<wchar_t, false>
{
public:
explicit Fwf(std::size_t refs = 0)
: std::moneypunct<wchar_t, false>(refs) {}
};
class Fwt
: public std::moneypunct<wchar_t, true>
{
public:
explicit Fwt(std::size_t refs = 0)
: std::moneypunct<wchar_t, true>(refs) {}
};
int main(int, char**)
{
{
Fnf f(1);
assert(f.decimal_point() == std::numeric_limits<char>::max());
}
{
Fnt f(1);
assert(f.decimal_point() == std::numeric_limits<char>::max());
}
{
Fwf f(1);
assert(f.decimal_point() == std::numeric_limits<wchar_t>::max());
}
{
Fwt f(1);
assert(f.decimal_point() == std::numeric_limits<wchar_t>::max());
}
return 0;
}