mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
6 lines
190 B
Plaintext
Vendored
6 lines
190 B
Plaintext
Vendored
// PARAM_TYPES: kotlin.Int
|
|
// PARAM_DESCRIPTOR: value-parameter a: kotlin.Int defined in A.<init>
|
|
val n = 1
|
|
class A(val a: Int, val b: Int = { i(a) }.invoke())
|
|
|
|
private fun i(a: Int) = a + n |