Call Resolver: Fix nullability of parenthesized safe calls used as value arguments

#KT-7903 Fixed
This commit is contained in:
Alexey Sedunov
2015-06-03 18:02:01 +03:00
parent d2c33c13a6
commit f08c7d0fd8
10 changed files with 68 additions and 11 deletions
@@ -0,0 +1,5 @@
annotation class foo
fun f(s : String?) : Boolean {
return (@foo s?.equals("a"))!!
}