blob: 116196a0d4681f36554f365f693fd0ff59ed2f31 [file]
package low
@Target(AnnotationTarget.EXPRESSION)
@Retention(AnnotationRetention.SOURCE)
annotation class Anno(val position: String)
const val constant = 0
class MyClass {
@Anno("init annotation: $constant") i<caret>nit {
@Anno("annotation inside")
funInsideInit()
}
}
fun anotherFun(): String = "str"
fun funInsideInit() = anotherFun()