aboutsummaryrefslogtreecommitdiff
path: root/test/libcxx/modules/cstdint_exports.sh.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/libcxx/modules/cstdint_exports.sh.cpp')
-rw-r--r--test/libcxx/modules/cstdint_exports.sh.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/libcxx/modules/cstdint_exports.sh.cpp b/test/libcxx/modules/cstdint_exports.sh.cpp
new file mode 100644
index 000000000000..8ecc1da28f1a
--- /dev/null
+++ b/test/libcxx/modules/cstdint_exports.sh.cpp
@@ -0,0 +1,21 @@
+//===----------------------------------------------------------------------===//
+//
+// 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 <cstdint> re-exports <stdint.h>
+
+// RUN: %build_module
+
+#include <cstdint>
+
+int main() {
+ int8_t x; ((void)x);
+ std::int8_t y; ((void)y);
+}