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,12 @@
|
||||
open class A () {
|
||||
open fun foo(x: Int): Int {
|
||||
if (x == null);
|
||||
return null
|
||||
}
|
||||
}
|
||||
|
||||
class B : A() {
|
||||
override fun foo(x: Int): Int {
|
||||
return 1
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user