New J2K: Move nullability analysis tests to nullabilityAnalysis dir
This commit is contained in:
committed by
Ilya Kirillov
parent
854fc6a7d7
commit
243fd2f4f1
@@ -0,0 +1,13 @@
|
||||
fun a(): Int? {
|
||||
return 42
|
||||
}
|
||||
|
||||
val b: Int? = 2
|
||||
|
||||
fun c(p: Int?) {
|
||||
if (p == null);
|
||||
}
|
||||
|
||||
fun check() {
|
||||
if (a() == null || b == null);
|
||||
}
|
||||
Reference in New Issue
Block a user