Cant understand annotation propagation for lambdas in Kotlin
According to official documentation - https://kotlinlang.org/docs/annotations.html#lambdas
there is an approach for introspect a lambda function for annotations searching. But i cant find any examples for this approach
But invoke() method does not provide any context, because it is just a directive for function evaluating
How to properly find any annotation placed right before lambda function? Should...