~ubuntu-branches/ubuntu/trusty/libc++/trusty

« back to all changes in this revision

Viewing changes to libcxx/test/iterators/stream.iterators/iterator.range/end_const.pass.cpp

  • Committer: Package Import Robot
  • Author(s): Andrej Belym
  • Date: 2012-06-02 19:25:47 UTC
  • Revision ID: package-import@ubuntu.com-20120602192547-b6ta950a8ckc9um2
Tags: upstream-1.0~svn160132
ImportĀ upstreamĀ versionĀ 1.0~svn160132

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 
 
10
// <iterator>
 
11
 
 
12
// template <class C> auto end(const C& c) -> decltype(c.end());
 
13
 
 
14
#include <vector>
 
15
#include <cassert>
 
16
 
 
17
int main()
 
18
{
 
19
    int ia[] = {1, 2, 3};
 
20
    const std::vector<int> v(ia, ia + sizeof(ia)/sizeof(ia[0]));
 
21
    std::vector<int>::const_iterator i = end(v);
 
22
    assert(i == v.cend());
 
23
}