summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/numeric/interval/test/integer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/boost/libs/numeric/interval/test/integer.cpp')
-rw-r--r--src/boost/libs/numeric/interval/test/integer.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/boost/libs/numeric/interval/test/integer.cpp b/src/boost/libs/numeric/interval/test/integer.cpp
new file mode 100644
index 000000000..3e78d8be4
--- /dev/null
+++ b/src/boost/libs/numeric/interval/test/integer.cpp
@@ -0,0 +1,24 @@
+/* Boost test/integer.cpp
+ * test int extension
+ *
+ * Copyright 2003 Guillaume Melquiond
+ *
+ * Distributed under the Boost Software License, Version 1.0.
+ * (See accompanying file LICENSE_1_0.txt or
+ * copy at http://www.boost.org/LICENSE_1_0.txt)
+ */
+
+#include <boost/numeric/interval.hpp>
+#include <boost/numeric/interval/ext/integer.hpp>
+#include "bugs.hpp"
+
+typedef boost::numeric::interval<float> I;
+
+int main() {
+ I x, y;
+ x = 4 - (2 * y + 1) / 3;
+# ifdef __BORLANDC__
+ ::detail::ignore_warnings();
+# endif
+ return 0;
+}