//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // reverse_iterator // reverse_iterator(); #include #include "test_iterators.h" template void test() { std::reverse_iterator r; } int main() { test >(); test >(); test(); test(); }