4cd7193047
#KT-11018 Fixed
7 lines
187 B
Plaintext
Vendored
7 lines
187 B
Plaintext
Vendored
// PARAM_TYPES: kotlin.Int
|
|
// PARAM_DESCRIPTOR: value-parameter b: kotlin.Int defined in A.<init>
|
|
class A(val a: Int, b: Int) {
|
|
val foo = i(b) - 1
|
|
|
|
private fun i(b: Int) = a + b
|
|
} |