Change Signature: Fix replacement of implicit Unit return type

This commit is contained in:
Alexey Sedunov
2017-08-10 15:17:12 +03:00
parent 386b1fc002
commit f455f06a9e
4 changed files with 27 additions and 6 deletions
@@ -0,0 +1,11 @@
open class A {
open fun foo(): Int {
}
}
class B : A() {
override fun foo(): Int {
}
}
@@ -0,0 +1,11 @@
open class A {
open fun <caret>foo() {
}
}
class B : A() {
override fun foo() {
}
}