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

9 lines
123 B
Kotlin
Vendored

class My {
val x: String
init {
x = <!DEBUG_INFO_LEAKING_THIS!>foo<!>()
}
fun foo(): String = x
}