b3842285e8
Converts +a, --a, a * b, a..b, a %= b, a in b, etc. to their function call counterparts.
5 lines
78 B
Kotlin
Vendored
5 lines
78 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
class bar() {}
|
|
fun main() {
|
|
val x = bar<caret>()
|
|
} |