//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // template struct pair // template // InputIterator // begin(const std::pair& p); #include #include #include int main() { { typedef std::pair P; int a[3] = {0}; P p(std::begin(a), std::end(a)); assert(std::begin(p) == a); } }