790b615fa1
Respect existing parameter names and fix some exceptions #KT-19439 Fixed #KT-20402 Fixed #KT-20403 Fixed
10 lines
138 B
Plaintext
Vendored
10 lines
138 B
Plaintext
Vendored
class A(val i: Int = C.c) : B({ "$i" })
|
|
|
|
class C() {
|
|
companion object {
|
|
val c = 23
|
|
}
|
|
}
|
|
|
|
open class B(param: () -> String)
|