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

7 lines
92 B
Kotlin
Vendored

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