Files
kotlin-fork/compiler/testData/diagnostics/tests/deparenthesize/annotatedSafeCall.fir.kt
T

7 lines
165 B
Kotlin
Vendored

@Target(AnnotationTarget.EXPRESSION)
@Retention(AnnotationRetention.SOURCE)
annotation class foo
fun f(s : String?) : Boolean {
return (@foo s?.equals("a"))!!
}