something similar/same for kotlin native would be ...
# kotlin-native
z
something similar/same for kotlin native would be an absolute killer feature
e
What you plan to use it for?
z
compile time dependency injection comes to mind
m
Everything similar to LoganSquare, Dagger, and so on...
z
I also use it to do bindings/protocol specific code generation based on an xml file. Because the xml is processed by compiler [annotation processor], you don't depend on any specific build tool [like gradle or maven or ... ]
also things like Google AutoValue are examples
I also used it to generate C bindings in Java, where you would declare in the Java code what you want/are interested in. The compiler would do the rest, so no extra tool required in the build chain.