blob: b87b4b99b2f7c24cdab22f0ca6547e64f69451ea [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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.
//
//===----------------------------------------------------------------------===//
// <locale>
// template <class charT, class InputIterator = istreambuf_iterator<charT> >
// class num_get
// : public locale::facet
// {
// public:
// typedef charT char_type;
// typedef InputIterator iter_type;
#include <locale>
#include <iterator>
#include <type_traits>
int main()
{
static_assert((std::is_base_of<std::locale::facet, std::num_get<char> >::value), "");
static_assert((std::is_base_of<std::locale::facet, std::num_get<wchar_t> >::value), "");
static_assert((std::is_same<std::num_get<char>::char_type, char>::value), "");
static_assert((std::is_same<std::num_get<wchar_t>::char_type, wchar_t>::value), "");
static_assert((std::is_same<std::num_get<char>::iter_type, std::istreambuf_iterator<char> >::value), "");
static_assert((std::is_same<std::num_get<wchar_t>::iter_type, std::istreambuf_iterator<wchar_t> >::value), "");
}