2021-03-29 17:14:01 +02:00
|
|
|
// ArduinoJson - https://arduinojson.org
|
2021-02-18 08:48:10 +01:00
|
|
|
// Copyright Benoit Blanchon 2014-2021
|
|
|
|
// MIT License
|
|
|
|
|
|
|
|
#include <ArduinoJson.h>
|
|
|
|
|
|
|
|
// See issue #1498
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
DynamicJsonDocument doc(1024);
|
|
|
|
doc["dummy"].as<char>();
|
|
|
|
}
|