Files
kotlin/idea/testData/quickfix/platformClasses/mapPlatformClassToKotlin4.kt
2015-09-18 21:00:20 +03:00

26 lines
479 B
Kotlin
Vendored

// "Change all usages of 'java.lang.Iterable<T>' in this file to a Kotlin class" "true"
import java.lang.*
import java.lang.Iterable
import java.lang.Iterable
import java.lang.Iterable as Foo
fun <T> a() : java.lang.Iterable<T>? {
return null
}
fun b() : java.lang.Iterable<String>? {
return null
}
fun c() : Foo<String><caret> {
throw Exception()
}
fun d() : java.lang.Iterable<String>? {
return null
}
fun e() : Iterable<String>? {
throw Exception()
}