aboutsummaryrefslogtreecommitdiff
path: root/test/std/depr/depr.ios.members/streamoff.pass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/std/depr/depr.ios.members/streamoff.pass.cpp')
-rw-r--r--test/std/depr/depr.ios.members/streamoff.pass.cpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/std/depr/depr.ios.members/streamoff.pass.cpp b/test/std/depr/depr.ios.members/streamoff.pass.cpp
new file mode 100644
index 000000000000..4ccfd1f7d225
--- /dev/null
+++ b/test/std/depr/depr.ios.members/streamoff.pass.cpp
@@ -0,0 +1,25 @@
+//===----------------------------------------------------------------------===//
+//
+// 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.
+//
+//===----------------------------------------------------------------------===//
+
+// <ios>
+//
+// class ios_base
+// {
+// public:
+// typedef OFF_T streamoff;
+// };
+
+#include <ios>
+#include <type_traits>
+
+int main()
+{
+ static_assert((std::is_integral<std::ios_base::streamoff>::value), "");
+ static_assert((std::is_signed<std::ios_base::streamoff>::value), "");
+}