Files
kotlin-fork/compiler/testData/diagnostics/tests/deparenthesize/annotatedSafeCall.kt
T
2015-06-16 21:15:29 +03:00

5 lines
89 B
Kotlin
Vendored

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