| 14 | namespace fs = boost::filesystem; |
| 15 | |
| 16 | int main() |
| 17 | { |
| 18 | fs::path p1("a"); |
| 19 | fs::path p2 = p1 / "b"; |
| 20 | |
| 21 | BOOST_TEST_EQ(p2, "a/b"); |
| 22 | |
| 23 | return boost::report_errors(); |
| 24 | } |
nothing calls this directly
no outgoing calls
no test coverage detected