7 lines
100 B
Kotlin
Vendored
7 lines
100 B
Kotlin
Vendored
package foo
|
|
|
|
operator fun Int.invoke(x: Int) = this + x
|
|
fun box(): Boolean {
|
|
return 1(2) == 3
|
|
}
|