sum.pass.cpp 696 B

12345678910111213141516171819202122232425262728
  1. //===----------------------------------------------------------------------===//
  2. //
  3. // The LLVM Compiler Infrastructure
  4. //
  5. // This file is dual licensed under the MIT and the University of Illinois Open
  6. // Source Licenses. See LICENSE.TXT for details.
  7. //
  8. //===----------------------------------------------------------------------===//
  9. // <valarray>
  10. // template<class T> class valarray;
  11. // value_type sum() const;
  12. #include <valarray>
  13. #include <cassert>
  14. int main()
  15. {
  16. {
  17. typedef double T;
  18. T a1[] = {1.5, 2.5, 3, 4, 5.5};
  19. const unsigned N1 = sizeof(a1)/sizeof(a1[0]);
  20. std::valarray<T> v1(a1, N1);
  21. assert(v1.sum() == 16.5);
  22. }
  23. }