mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-14 00:21:34 +00:00
7 lines
196 B
Kotlin
Vendored
7 lines
196 B
Kotlin
Vendored
// PARAM_TYPES: kotlin.Int
|
|
// PARAM_DESCRIPTOR: value-parameter b: kotlin.Int defined in A.<init>
|
|
class A(val a: Int, b: Int) {
|
|
init {
|
|
println(<selection>a + b</selection> - 1)
|
|
}
|
|
} |