4d9b19da82
#KT-18539 Fixed
12 lines
239 B
Plaintext
Vendored
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")
|
|
}
|
|
}
|