1465418c2b
#KT-7151 Fixed
10 lines
137 B
Kotlin
Vendored
10 lines
137 B
Kotlin
Vendored
class C(p: Int) {
|
|
private val p: Int
|
|
|
|
init {
|
|
var p = p
|
|
this.p = p
|
|
println(p++)
|
|
println(p)
|
|
}
|
|
} |