Files
kotlin-fork/compiler/testData/diagnostics/tests/extensions/extensionPropertyVsParameter.fir.kt
T

8 lines
88 B
Kotlin
Vendored

val Int.foo: Int
get() = this
fun test(foo: Int) {
test(4.foo)
test(foo)
}