Rename: Do not silently rename all parameters in function hierarchy

#KT-18325 Fixed
This commit is contained in:
Alexey Sedunov
2017-06-13 18:09:15 +03:00
parent 31d21a14f2
commit 895407f5e3
21 changed files with 311 additions and 33 deletions
@@ -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) {
}
}