2021-03-29 17:14:01 +02:00
|
|
|
// ArduinoJson - https://arduinojson.org
|
2021-01-27 09:59:51 +01:00
|
|
|
// Copyright Benoit Blanchon 2014-2021
|
|
|
|
// MIT License
|
|
|
|
|
|
|
|
#include <ArduinoJson.h>
|
|
|
|
|
|
|
|
struct Stream {};
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
JsonDocument* doc = new DynamicJsonDocument(42);
|
|
|
|
delete doc;
|
|
|
|
}
|