9 lines
170 B
Plaintext
Vendored
9 lines
170 B
Plaintext
Vendored
// INTENTION_TEXT: Replace with '..' operator
|
|
fun test() {
|
|
class Test {
|
|
operator fun rangeTo(a: Int): Test = Test()
|
|
}
|
|
val test = Test()
|
|
test..1
|
|
}
|