Files
kotlin-fork/compiler/testData/diagnostics/tests/extensions/extensionPropertyVsParameter.kt
T
2015-08-27 12:01:11 +03:00

8 lines
88 B
Kotlin
Vendored

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