mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 15:54:03 +00:00
12 lines
161 B
Kotlin
Vendored
12 lines
161 B
Kotlin
Vendored
class My {
|
|
val x: String
|
|
|
|
constructor() {
|
|
val temp = <!DEBUG_INFO_LEAKING_THIS!>this<!>
|
|
x = bar(temp)
|
|
}
|
|
|
|
}
|
|
|
|
fun bar(arg: My) = arg.x
|