Files
kotlin-fork/compiler/testData/diagnostics/tests/deparenthesize/annotatedSafeCall.kt
T
2015-09-07 13:42:26 +03:00

6 lines
126 B
Kotlin
Vendored

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