a1e86e8bfa
(cherry picked from commit a51d3fc)
12 lines
344 B
Plaintext
Vendored
12 lines
344 B
Plaintext
Vendored
// "Create member function 'Foo.get'" "true"
|
|
|
|
class Foo<T> {
|
|
fun <T, V> x (y: Foo<Iterable<T>>, w: Iterable<V>) {
|
|
val z: Iterable<T> = y["", w]
|
|
}
|
|
|
|
private operator fun <V> get(s: String, w: Iterable<V>): T {
|
|
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|
|
}
|