e31ea0c243
#KT-15944 Fixed
11 lines
219 B
Kotlin
Vendored
11 lines
219 B
Kotlin
Vendored
// "Replace with 'get2(i)'" "true"
|
|
interface T {
|
|
@Deprecated("", replaceWith = ReplaceWith("get2(i)"))
|
|
operator fun get(i: Int): String
|
|
|
|
fun get2(i: Int): String
|
|
}
|
|
|
|
fun test(t: T) {
|
|
val s = <caret>t[0]
|
|
} |