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.
27 lines
707 B
C++
27 lines
707 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
|
|
|
|
// Test that <cstdint> re-exports <stdint.h>
|
|
|
|
// RUN: %build_module
|
|
|
|
#include <cstdint>
|
|
|
|
int main(int, char**) {
|
|
int8_t x; ((void)x);
|
|
std::int8_t y; ((void)y);
|
|
|
|
return 0;
|
|
}
|