| 187 | }} |
| 188 | |
| 189 | void github_issue_90() |
| 190 | { |
| 191 | using namespace issue_90; |
| 192 | namespace bp = boost::parser; |
| 193 | |
| 194 | std::string input = R"( "dd" : "2" )"; |
| 195 | std::pair<std::string, std::string> result; |
| 196 | |
| 197 | auto b = bp::parse(input, parser::specifier, bp::ws, result); |
| 198 | BOOST_TEST(b); |
| 199 | BOOST_TEST(result.first == "dd"); |
| 200 | BOOST_TEST(result.second == "2"); |
| 201 | } |
| 202 | |
| 203 | namespace github_issue_125_ { |
| 204 | namespace bp = boost::parser; |