Files
kotlin-fork/compiler/testData/diagnostics/tests/j+k/kt2394.kt
T
2012-09-05 18:55:16 +04:00

14 lines
357 B
Kotlin

//KT-2394 java.lang.Iterable<T> should be visible as jet.Iterable<out T>
package d
fun foo(iterable: Iterable<Int>, iterator: Iterator<Int>, comparable: Comparable<Any>) {
iterable : Iterable<Any>
iterator : Iterator<Any>
comparable : Comparable<String>
}
fun bar(c: Collection<Int>) {
c : Iterable<Any>
c.iterator() : Iterator<Any>
}