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

5 lines
113 B
Kotlin
Vendored

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