Files
kotlin-fork/idea/testData/inspections/unusedImport/fileInPack2.kt
T
2015-07-22 21:11:00 +03:00

9 lines
123 B
Kotlin
Vendored

package pack2
import pack2.* // unused because it's the current package
fun foo(p: ClassInPack2) {
}
class ClassInPack2