Files
kotlin-fork/compiler/testData/diagnostics/tests/scopes/implicitReceiverMemberVsParameter.kt
T
2015-11-26 16:21:49 +03:00

5 lines
96 B
Kotlin
Vendored

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