Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createFunction/get/createGetFromUsage4.kt.after
T
2019-11-13 08:37:25 +09:00

12 lines
239 B
Plaintext
Vendored

// "Create member function 'Foo.get'" "true"
class Foo<T, S: Iterable<T>> {
fun <U> x (y: Foo<U, Iterable<U>>) {
val z: U = y[""]
}
private operator fun get(s: String): T {
TODO("Not yet implemented")
}
}