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