summaryrefslogtreecommitdiffstats
path: root/test/localization/locale.categories/category.monetary/locale.money.get/types.pass.cpp
blob: 8aa312139e797c328af8134bad807295f1e3df41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//===----------------------------------------------------------------------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

// <locale>

// template <class CharT, class InputIterator = istreambuf_iterator<CharT> >
// class money_get
//     : public locale::facet
// {
// public:
//     typedef CharT                   char_type;
//     typedef InputIterator           iter_type;
//     typedef basic_string<char_type> string_type;

#include <locale>
#include <type_traits>

int main()
{
    static_assert((std::is_base_of<std::locale::facet, std::money_get<char> >::value), "");
    static_assert((std::is_base_of<std::locale::facet, std::money_get<wchar_t> >::value), "");
    static_assert((std::is_same<std::money_get<char>::char_type, char>::value), "");
    static_assert((std::is_same<std::money_get<wchar_t>::char_type, wchar_t>::value), "");
    static_assert((std::is_same<std::money_get<char>::iter_type, std::istreambuf_iterator<char> >::value), "");
    static_assert((std::is_same<std::money_get<wchar_t>::iter_type, std::istreambuf_iterator<wchar_t> >::value), "");
    static_assert((std::is_same<std::money_get<char>::string_type, std::string>::value), "");
    static_assert((std::is_same<std::money_get<wchar_t>::string_type, std::wstring>::value), "");
}