New J2K: Move nullability analysis tests to nullabilityAnalysis dir

This commit is contained in:
Ilya Kirillov
2019-04-02 00:42:06 +03:00
committed by Ilya Kirillov
parent 854fc6a7d7
commit 243fd2f4f1
18 changed files with 10 additions and 10 deletions
+4
View File
@@ -0,0 +1,4 @@
fun foo(o: Int) {
if (o == null) return
val a: Int = o
}