blob: 9fd30c3689ed9d938e7a0f901d6a42ee8df52901 [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 messages_base
// {
// public:
// typedef unspecified catalog;
// };
#include <locale>
#include <type_traits>
#include "test_macros.h"
int main(int, char**)
{
std::messages_base mb;
return 0;
}