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

9 lines
137 B
Kotlin
Vendored

package pack1
import pack1.ClassInPack1 // unused because it's in the current package
fun foo(p: ClassInPack1) {
}
class ClassInPack1