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

9 lines
105 B
Kotlin
Vendored

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