/* * This file is part of MXE. See LICENSE.md for licensing information. */ #include #include int main(int argc, char *argv[]) { (void)argc; (void)argv; pugi::xml_document doc; std::string source( "test"); pugi::xml_parse_result result = doc.load_string(source.c_str(), source.size()); return result ? 0 : 1; }