14 lines
170 B
Kotlin
Vendored
14 lines
170 B
Kotlin
Vendored
class My {
|
|
val x: String
|
|
|
|
constructor() {
|
|
val y = bar(this)
|
|
val z = foo()
|
|
x = "$y$z"
|
|
}
|
|
|
|
fun foo() = x
|
|
}
|
|
|
|
fun bar(arg: My) = arg.x
|