summaryrefslogtreecommitdiffstats
path: root/Tests/FindJsonCpp/Test/main.cxx
blob: 0fefe32a1552667c6928b49be63b0f3656c539c3 (plain)
1
2
3
4
5
6
7
8
#include <json/json.h>

int main()
{
  int zero = 0;
  Json::Value value(zero);
  return value.asInt();
}