mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
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.
|
|
}
|
|
}
|