Files
kotlin/idea/testData/quickfix/createFromUsage/createFunction/get/afterCreateGetFromUsage3.kt

11 lines
304 B
Kotlin

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