New J2K: Add nullability analyser tests

This commit is contained in:
Ilya Kirillov
2019-03-21 23:02:11 +03:00
committed by Ilya Kirillov
parent f3b6c880d4
commit bdd773f806
19 changed files with 247 additions and 2 deletions
+4
View File
@@ -0,0 +1,4 @@
fun foo(o: Int?) {
if (o == null) return
val a: Int = o
}