4d9b19da82
#KT-18539 Fixed
12 lines
230 B
Plaintext
Vendored
12 lines
230 B
Plaintext
Vendored
// "Create member function 'Foo.get'" "true"
|
|
|
|
class Foo<T> {
|
|
fun <S> x (y: Foo<Iterable<S>>) {
|
|
val z: Iterable<S> = y[""]
|
|
}
|
|
|
|
private operator fun get(s: String): T {
|
|
TODO("Not yet implemented")
|
|
}
|
|
}
|