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

7 lines
142 B
Kotlin

// "Create method 'get' from usage" "true"
class Foo<T> {
fun x (y: Foo<Iterable<T>>) {
val z: Iterable<T> = y<caret>[""]
}
}