Steps to reproduce: Input the following JSON: ```JSON { "list": [{}] } ``` Expected output: ```kotlin data class Test( val list: List<Item0> ) class Item0 ``` (or something similar) Actual output: ``` data class Test( val list: List<> ) class ```
Steps to reproduce:
Input the following JSON:
{ "list": [{}] }Expected output:
(or something similar)
Actual output: