Karolis
09/06/2019, 7:28 AM@MyAnn("something") fun f() = { ... }
Which would result in annotation being @SomeOtherAnnotation("someConstantValueDefinedInMyAnn" + "something")
Is that even possible in Kotlin?
I know that I can do @SomeOtherAnnotation("someConstantValueDefinedInMyAnn")
annotation class MyAnn
but is it possible to pass arguments to that other annotation?