Rename: Drop 'override' keyword when renaming function/property without bases
#KT-4790 Fixed
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
class A(val n: Int) {
|
||||
override fun foo(other: Any?): Boolean = other is A && other.n == n
|
||||
fun foo(other: Any?): Boolean = other is A && other.n == n
|
||||
}
|
||||
|
||||
fun test() {
|
||||
|
||||
Reference in New Issue
Block a user