minix/external/bsd/libc++/dist/libcxx/test/localization/locale.categories/category.monetary/locale.moneypunct/types.pass.cpp
Lionel Sambuc 4684ddb6aa LLVM Minix changes
- import libcxx
 - reduce targets to the one when compiled as a tools

Change-Id: Iabb8427f80ff8e89463559a28bcb8b4f2bdbc496
2014-07-28 17:05:59 +02:00

48 lines
1.9 KiB
C++

//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This test uses new symbols that were not defined in the libc++ shipped on
// darwin11 and darwin12:
// XFAIL: with_system_lib=x86_64-apple-darwin11
// XFAIL: with_system_lib=x86_64-apple-darwin12
// <locale>
// template <class _CharT, bool _International = false>
// class moneypunct
// : public locale::facet,
// public money_base
// {
// public:
// typedef _CharT char_type;
// typedef basic_string<char_type> string_type;
// static const bool intl = International;
#include <locale>
#include <type_traits>
template <class _Tp>
void test(const _Tp &) {}
int main()
{
static_assert((std::is_base_of<std::locale::facet, std::moneypunct<char> >::value), "");
static_assert((std::is_base_of<std::locale::facet, std::moneypunct<wchar_t> >::value), "");
static_assert((std::is_base_of<std::money_base, std::moneypunct<char> >::value), "");
static_assert((std::is_base_of<std::money_base, std::moneypunct<wchar_t> >::value), "");
static_assert((std::is_same<std::moneypunct<char>::char_type, char>::value), "");
static_assert((std::is_same<std::moneypunct<wchar_t>::char_type, wchar_t>::value), "");
static_assert((std::is_same<std::moneypunct<char>::string_type, std::string>::value), "");
static_assert((std::is_same<std::moneypunct<wchar_t>::string_type, std::wstring>::value), "");
test(std::moneypunct<char, false>::intl);
test(std::moneypunct<char, true>::intl);
test(std::moneypunct<wchar_t, false>::intl);
test(std::moneypunct<wchar_t, true>::intl);
}