summaryrefslogtreecommitdiffstats
path: root/src/yaml-cpp-test.cpp
blob: 2b91ba45a95c51e745d2c30c1b72229091739151 (plain)
1
2
3
4
5
6
7
8
#include <assert.h>
#include <yaml-cpp/yaml.h>

int main() {
    YAML::Node node = YAML::Load("[1, 2, 3]");
    assert(node.IsSequence());
    return 0;
}