9 lines
156 B
Kotlin
Vendored
9 lines
156 B
Kotlin
Vendored
// FIX: Replace with '/'
|
|
fun test() {
|
|
class Test {
|
|
operator fun div(a: Int): Test = Test()
|
|
}
|
|
val test = Test()
|
|
test.<caret>div(1)
|
|
}
|