Files

12 lines
131 B
Kotlin
Vendored

class My {
val x: String
constructor() {
val temp = this
x = bar(temp)
}
}
fun bar(arg: My) = arg.x