Files
kotlin-fork/compiler/testData/integration/ant/jvm/valWithInvoke/test.kt
T

10 lines
125 B
Kotlin
Vendored

package bar
@Suppress("REDECLARATION")
val foo: Int = 6
operator fun Int.invoke() = this
fun main() {
println(foo())
}