Change Signature: Propagate nullability annotations to overriding methods in Java
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
open class A {
|
||||
open fun foo(n: Int, s: String, o: Any?): String = ""
|
||||
}
|
||||
|
||||
class B: A() {
|
||||
override fun foo(n: Int, s: String, o: Any?): String = ""
|
||||
}
|
||||
Reference in New Issue
Block a user