Ticket #11303: gcc-bug.cpp

File gcc-bug.cpp, 234 bytes (added by anonymous, 7 years ago)
Line 
1#include <boost/utility.hpp>
2#include <map>
3
4 void foo()
5 {
6 typedef std::map< int, int > M;
7 M m_;
8 M::const_iterator i = boost::next( m_.begin(), 0 );
9 }