Files
kotlin-fork/idea/testData/quickfix/createFromUsage/get/afterCreateGetFromUsage9.kt
T
2013-05-12 23:50:36 -04:00

12 lines
340 B
Kotlin

// "Create method 'get' from usage" "true"
import java.util.ArrayList
class Foo<S> {
fun <T> x (y: Foo<List<T>>, w: ArrayList<T>) {
val z: Iterable<T> = y["", w]
}
fun get(s: String, w: S): S {
throw Exception("not implemented") //To change body of created methods use File | Settings | File Templates.
}
}