aboutsummaryrefslogtreecommitdiff
path: root/test/libcxx/modules/stdint_h_exports.sh.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/libcxx/modules/stdint_h_exports.sh.cpp')
-rw-r--r--test/libcxx/modules/stdint_h_exports.sh.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/libcxx/modules/stdint_h_exports.sh.cpp b/test/libcxx/modules/stdint_h_exports.sh.cpp
new file mode 100644
index 000000000000..78e1101383b1
--- /dev/null
+++ b/test/libcxx/modules/stdint_h_exports.sh.cpp
@@ -0,0 +1,20 @@
+//===----------------------------------------------------------------------===//
+//
+// 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.
+//
+//===----------------------------------------------------------------------===//
+
+// REQUIRES: modules-support
+
+// Test that int8_t and the like are exported from stdint.h not inttypes.h
+
+// RUN: %build_module
+
+#include <stdint.h>
+
+int main() {
+ int8_t x; ((void)x);
+}