iter.fail.cpp (605B)
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 // explicit reverse_iterator(Iter x); 15 16 // test explicit 17 18 #include <iterator> 19 20 template <class It> 21 void 22 test(It i) 23 { 24 std::reverse_iterator<It> r = i; 25 } 26 27 int main() 28 { 29 const char s[] = "123"; 30 test(s); 31 }