[NI] Refine nullability for CST of types with undefined nullability

This commit is contained in:
Mikhail Zarechenskiy
2017-12-01 18:11:09 +03:00
parent b9d390449c
commit 1d736f59b6
10 changed files with 28 additions and 25 deletions
+2 -2
View File
@@ -12,7 +12,7 @@ fun <T> test(v: T): T {
v
}
val t: T = <!NI;DEBUG_INFO_SMARTCAST!>a<!>
val t: T = a
return t
}
@@ -36,7 +36,7 @@ fun <T> test3(v: T): T {
v
}
val t: T = <!NI;DEBUG_INFO_SMARTCAST!>a<!>
val t: T = a
return t
}