blob: 4cbb1d5742064ea2d4165a43d9ac9b2c17c4a0f1 [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
//
//===----------------------------------------------------------------------===//
// This test fails on Windows because the underlying libc headers on Windows
// are not modular
// XFAIL: LIBCXX-WINDOWS-FIXME
// REQUIRES: modules-support
// Test that intypes.h re-exports stdint.h
// RUN: %build_module
#include <inttypes.h>
int main(int, char**) {
int8_t x; ((void)x);
return 0;
}