blob: dbab8212a736fd9c8c9b9e8057924cd08ab3f19f [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.
//
//===----------------------------------------------------------------------===//
//
// This test uses new symbols that were not defined in the libc++ shipped on
// darwin11 and darwin12:
// XFAIL: availability=macosx10.7
// XFAIL: availability=macosx10.8
// <locale>
// typedef int category;
#include <locale>
#include <type_traits>
#include <cassert>
template <class T>
void test(const T &) {}
int main()
{
static_assert((std::is_same<std::locale::category, int>::value), "");
assert(std::locale::none == 0);
assert(std::locale::collate);
assert(std::locale::ctype);
assert(std::locale::monetary);
assert(std::locale::numeric);
assert(std::locale::time);
assert(std::locale::messages);
assert((std::locale::collate
& std::locale::ctype
& std::locale::monetary
& std::locale::numeric
& std::locale::time
& std::locale::messages) == 0);
assert((std::locale::collate
| std::locale::ctype
| std::locale::monetary
| std::locale::numeric
| std::locale::time
| std::locale::messages)
== std::locale::all);
test(std::locale::none);
test(std::locale::collate);
test(std::locale::ctype);
test(std::locale::monetary);
test(std::locale::numeric);
test(std::locale::time);
test(std::locale::messages);
test(std::locale::all);
}