[kotlinpoet] Hello! Any hints on how to create gen...
# squarelibraries
d
[kotlinpoet] Hello! Any hints on how to create generic class reference with wildcard? e.g. given property
Copy code
PropertySpec.builder("myProp", ClassName(LIBRARY_PACKAGE, "MyClass")
how to update it so I end up with
Copy code
myProp: MyClass<*>
Tried using
parameterizedBy
with
WildcardTypeName
but it looks like it assumes concrete types
looks like it might work with
Any
nope it doesnt
d
cool thnx