Files
kotlin-fork/compiler/testData/diagnostics/tests/scopes/implicitReceiverMemberVsParameter.fir.kt
T

5 lines
74 B
Kotlin
Vendored

class A(val foo: Int)
fun A.test(foo: String) {
val a: String = foo
}