0
0
mirror of https://github.com/zeux/pugixml.git synced 2025-01-01 00:37:48 +08:00
pugixml/tests/main.cpp

11 lines
188 B
C++
Raw Normal View History

#include "../src/pugixml.hpp"
int main()
{
pugi::xml_document doc;
doc.load("<node/>");
doc.select_single_node("node");
// doc.select_single_node("//"); - fails? why? :)
}