1#include <iostream>
2#include <nlohmann/json.hpp>
3
4using json = nlohmann::json;
5
6int main()
7{
8    json::json_pointer::string_t s = "This is a string.";
9
10    std::cout << s << std::endl;
11
12    std::cout << std::boolalpha << std::is_same<json::json_pointer::string_t, json::string_t>::value << std::endl;
13}
14