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 // reverse_iterator
13 
14 // reverse_iterator();
15 
16 #include <iterator>
17 
18 #include "test_iterators.h"
19 
20 template <class It>
21 void
test()22 test()
23 {
24     std::reverse_iterator<It> r;
25 }
26 
main()27 int main()
28 {
29     test<bidirectional_iterator<const char*> >();
30     test<random_access_iterator<char*> >();
31     test<char*>();
32     test<const char*>();
33 }
34