test.pass.cpp revision f5256e16dfc425c1d466f6308d4026d529ce9e0b
1//===----------------------------------------------------------------------===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10// <iterator>
11
12// back_insert_iterator
13
14// back_insert_iterator<Cont>& operator*();
15
16#include <iterator>
17#include <vector>
18#include <cassert>
19
20template <class C>
21void
22test(C c)
23{
24    std::back_insert_iterator<C> i(c);
25    std::back_insert_iterator<C>& r = *i;
26    assert(&r == &i);
27}
28
29int main()
30{
31    test(std::vector<int>());
32}
33