[MyListWrapper.java](https://github.com/avaje/avaje-jsonb/blob/main/blackbox-test/src/main/java/org/example/customer/generics/MyListWrapper.java) ```java @Json public record MyListWrapper<T>(List<T> list) { } ``` Changing the code to a record type will result compilation failure: incompatible types: java.lang.Object cannot be converted to java.util.List.