minix/external/bsd/libc++/dist/libcxx/test/localization/locale.categories/category.messages/locale.messages/messages_base.pass.cpp

25 lines
536 B
C++
Raw Normal View History

//===----------------------------------------------------------------------===//
//
// 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>
// class messages_base
// {
// public:
// typedef unspecified catalog;
// };
#include <locale>
#include <type_traits>
int main()
{
std::messages_base mb;
}