diff options
Diffstat (limited to 'test/std/numerics/numarray/valarray.nonmembers/valarray.binary/divide_valarray_value.pass.cpp')
| -rw-r--r-- | test/std/numerics/numarray/valarray.nonmembers/valarray.binary/divide_valarray_value.pass.cpp | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/test/std/numerics/numarray/valarray.nonmembers/valarray.binary/divide_valarray_value.pass.cpp b/test/std/numerics/numarray/valarray.nonmembers/valarray.binary/divide_valarray_value.pass.cpp deleted file mode 100644 index 0b692aa35a2d..000000000000 --- a/test/std/numerics/numarray/valarray.nonmembers/valarray.binary/divide_valarray_value.pass.cpp +++ /dev/null @@ -1,33 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// 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; - -// template<class T> valarray<T> operator/(const valarray<T>& x, const T& y); - -#include <valarray> -#include <cassert> -#include <cstddef> - -int main() -{ - { - typedef int T; - T a1[] = {6, 12, 18, 24, 30}; - T a2[] = {1, 2, 3, 4, 5}; - const unsigned N = sizeof(a1)/sizeof(a1[0]); - std::valarray<T> v1(a1, N); - std::valarray<T> v2 = v1 / 6; - assert(v1.size() == v2.size()); - for (std::size_t i = 0; i < v2.size(); ++i) - assert(v2[i] == a2[i]); - } -} |
