Files
kotlin-fork/compiler/testData/diagnostics/tests/j+k/kt2606.fir.kt
T

11 lines
196 B
Kotlin
Vendored

//KT-2606 Filter java.util.* import
package n
import java.util.*
import java.lang.annotation.*
fun bar() : Iterator<Int>? {
val i : Iterable<Integer>
val a : Annotation
return null
}