When trying to assign a java nested raw type to a kotlin nested generic, the compiler complains about incompatible types
In kotlin I have:
class ExampleMap : HashMap<String, List<Any>>();
Now in Java when I try to declare a variable like so Map<String, List> map = new ExampleMap();
, the compiler complains:
The following however compiles: Map<String, List<?>> map = new ExampleMap();
. Also when there a single generic type everything works well, i.e. class ExampleList : ArrayList<Any>() / List list = new ExampleList();
Is there anyway to do this through an interop between Kotlin and Java? such that Map<String, List> map = new ExampleMap();
will compile?