57763e10e0
#KT-6689 Fixed
11 lines
308 B
Kotlin
11 lines
308 B
Kotlin
// "Create function 'get'" "true"
|
|
class Foo<T> {
|
|
fun x (y: Foo<Iterable<T>>) {
|
|
val z: Iterable<T> = y[""]
|
|
}
|
|
|
|
private fun get(s: String): T {
|
|
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|
|
}
|