Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createFunction/get/afterCreateGetFromUsage5.kt
T
2015-02-04 23:38:16 +03:00

11 lines
354 B
Kotlin

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