//===----------------------------------------------------------------------===// // // 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 // explicit reverse_iterator(Iter x); // test explicit #include template void test(It i) { std::reverse_iterator r = i; } int main() { const char s[] = "123"; test(s); }