Files
kotlin-fork/compiler/testData/diagnostics/tests/constructorConsistency/assignment.kt
T
2016-06-03 09:45:37 +03:00

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