Rename: Do not silently rename all parameters in function hierarchy
#KT-18325 Fixed
This commit is contained in:
+2
-2
@@ -1,12 +1,12 @@
|
||||
package testing
|
||||
|
||||
interface Trait {
|
||||
open fun Int.foo(aa: Int, b: String) {
|
||||
open fun Int.foo(a: Int, b: String) {
|
||||
}
|
||||
}
|
||||
|
||||
open class Super {
|
||||
open fun Int.foo(aa: Int, b: String) {
|
||||
open fun Int.foo(a: Int, b: String) {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user