Files
kotlin-fork/compiler/testData/diagnostics/tests/deparenthesize/annotatedSafeCall.kt
T
2018-07-18 14:21:03 +03:00

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"))!!
}