Partial body resolve: to take source Kotlin callables with Nothing type from caches

This commit is contained in:
Valentin Kipyatkov
2014-11-19 18:41:58 +03:00
parent 992cdd9fe2
commit e5579bcf32
23 changed files with 301 additions and 13 deletions
@@ -0,0 +1,7 @@
val error = "error"
fun foo(p: Any) {
if (p !is String) {
print(error)
}
println(<caret>p.size)
}