Advertisement
cepxuozab

BuilderSratDictStartArray

Jun 12th, 2024
359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.60 KB | None | 0 0
  1.  (json::Builder{}.StartDict().Value("2"s).EndDict(),std::logic_error);
  2.  
  3. (json::Builder{}.StartDict().StartDict().Key("1"s).Value("2"s).EndDict().EndDict(),std::logic_error);
  4.  
  5. (json::Builder{}.StartDict().StartArray().Value("2"s).EndArray().EndDict(),std::logic_error);
  6.  
  7. (json::Builder{}.StartDict().Key("1"s).Value("2"s).Value("2"s).EndDict(),std::logic_error);
  8.         (json::Builder{}.StartDict().Key("1"s).Value("2"s).StartDict().Key("1"s).Value("2"s).EndDict().EndDict(),std::logic_error);
  9.  
  10. (json::Builder{}.StartDict().Key("1"s).Value("2"s).StartArray().Value("2"s).EndArray().EndDict(),std::logic_error);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement