You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
799 B
C++
30 lines
799 B
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// This test fails on Windows because the underlying libc headers on Windows
|
|
// are not modular
|
|
// XFAIL: LIBCXX-WINDOWS-FIXME
|
|
|
|
// REQUIRES: modules-support
|
|
// UNSUPPORTED: c++98, c++03
|
|
|
|
// RUN: %build_module
|
|
|
|
#include <clocale>
|
|
|
|
#define TEST(...) do { using T = decltype( __VA_ARGS__ ); } while(false)
|
|
|
|
int main(int, char**) {
|
|
std::lconv l; ((void)l);
|
|
|
|
TEST(std::setlocale(0, ""));
|
|
TEST(std::localeconv());
|
|
|
|
return 0;
|
|
}
|