//===----------------------------------------------------------------------===// // // ΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚThe LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // template class valarray; // const value_type& operator[](size_t i) const; #include #include int main() { { typedef int T; T a[] = {5, 4, 3, 2, 1}; const unsigned N = sizeof(a)/sizeof(a[0]); const std::valarray v(a, N); for (int i = 0; i < N; ++i) { assert(v[i] == a[i]); } } }