mxe/src/yaml-cpp-test.cpp

9 lines
155 B
C++
Raw Permalink Normal View History

2016-07-15 23:54:43 +01:00
#include <assert.h>
#include <yaml-cpp/yaml.h>
int main() {
YAML::Node node = YAML::Load("[1, 2, 3]");
assert(node.IsSequence());
return 0;
}