Files
kotlin-fork/compiler/testData/diagnostics/tests/constructorConsistency/property.fir.kt
T

5 lines
83 B
Kotlin
Vendored

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