summaryrefslogtreecommitdiff
path: root/tests/main.cpp
blob: ab3187cbd818b99f94a84f724ef1c859351bed1a (plain)
1
2
3
4
5
6
7
8
9
10
#include "../src/pugixml.hpp"

int main()
{
	pugi::xml_document doc;
	doc.load("<node/>");
	doc.select_single_node("node");

	// doc.select_single_node("//"); - fails? why? :)
}