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 // move_iterator
13 
14 // pointer operator->() const;
15 
16 #include <iterator>
17 #include <cassert>
18 
19 template <class It>
20 void
21 test(It i)
22 {
23     std::move_iterator<It> r(i);
24     assert(r.operator->() == i);
25 }
26 
27 int main()
28 {
29     char s[] = "123";
30     test(s);
31 }
32