Ticket #13327: test_ptree.cpp

File test_ptree.cpp, 185 bytes (added by anonymous, 5 years ago)

Source file to reproduce the issue

Line 
1#include <boost/property_tree/ptree.hpp>
2
3void foo() {
4 boost::property_tree::ptree pt;
5 auto myfunc = [=]() {
6 boost::property_tree::ptree::const_iterator pos1 = pt.begin();
7 };
8}