aboutsummaryrefslogtreecommitdiff
path: root/test/std/numerics/numarray/template.valarray/valarray.cons/value_size.pass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/std/numerics/numarray/template.valarray/valarray.cons/value_size.pass.cpp')
-rw-r--r--test/std/numerics/numarray/template.valarray/valarray.cons/value_size.pass.cpp39
1 files changed, 39 insertions, 0 deletions
diff --git a/test/std/numerics/numarray/template.valarray/valarray.cons/value_size.pass.cpp b/test/std/numerics/numarray/template.valarray/valarray.cons/value_size.pass.cpp
new file mode 100644
index 000000000000..336c898b548d
--- /dev/null
+++ b/test/std/numerics/numarray/template.valarray/valarray.cons/value_size.pass.cpp
@@ -0,0 +1,39 @@
+//===----------------------------------------------------------------------===//
+//
+// 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.
+//
+//===----------------------------------------------------------------------===//
+
+// <valarray>
+
+// template<class T> class valarray;
+
+// valarray(const value_type& x, size_t n);
+
+#include <valarray>
+#include <cassert>
+
+int main()
+{
+ {
+ std::valarray<int> v(5, 100);
+ assert(v.size() == 100);
+ for (int i = 0; i < 100; ++i)
+ assert(v[i] == 5);
+ }
+ {
+ std::valarray<double> v(2.5, 100);
+ assert(v.size() == 100);
+ for (int i = 0; i < 100; ++i)
+ assert(v[i] == 2.5);
+ }
+ {
+ std::valarray<std::valarray<double> > v(std::valarray<double>(10), 100);
+ assert(v.size() == 100);
+ for (int i = 0; i < 100; ++i)
+ assert(v[i].size() == 10);
+ }
+}