b3842285e8
Converts +a, --a, a * b, a..b, a %= b, a in b, etc. to their function call counterparts.
8 lines
119 B
Kotlin
8 lines
119 B
Kotlin
// IS_APPLICABLE: false
|
|
class coffee() {
|
|
fun invoke() {
|
|
}
|
|
}
|
|
fun main() {
|
|
val f = coffee().<caret>invoke()
|
|
} |