Files
kotlin-fork/idea/testData/inspectionsLocal/whenWithOnlyElse/subjectVariable/hasAnnotation.kt.after
T

13 lines
172 B
Plaintext
Vendored

// WITH_RUNTIME
fun hasAnnotation() {
run {
@Bar val a = create()
use(a)
}
}
fun create(): String = ""
fun use(s: String) {}
annotation class Bar