12 lines
325 B
Plaintext
Vendored
12 lines
325 B
Plaintext
Vendored
// "Create member function 'get'" "true"
|
|
|
|
class Foo<T> {
|
|
fun x (y: Foo<Iterable<T>>) {
|
|
val z: Iterable<T> = y[""]
|
|
}
|
|
|
|
private operator fun get(s: String): T {
|
|
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|
|
}
|