blob: c432299cc19bab99c06d65833a89fab6fc136298 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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.
//
//===----------------------------------------------------------------------===//
// <iterator>
// reverse_iterator
// reverse_iterator();
#include <iterator>
#include "../../../../iterators.h"
template <class It>
void
test()
{
std::reverse_iterator<It> r;
}
int main()
{
test<bidirectional_iterator<const char*> >();
test<random_access_iterator<char*> >();
test<char*>();
test<const char*>();
}