summaryrefslogtreecommitdiff
path: root/plugins/kotlin/jps/jps-plugin/tests/testData/general/SourcePackageLongPrefix/module1/src/test/other/otherTest.kt
blob: d27a3ac6bf5843a4d33221f49a4fd235c6db3cf8 (plain)
1
2
3
4
5
6
7
8
9
package test.other

import bad.prefix.KotlinTestInBadPrefix
import good.prefix.KotlinTestInGoodPrefix
import good.prefix.JavaTest;

val goodTest = KotlinTestInGoodPrefix()
val badTest = KotlinTestInBadPrefix()
val javaTest = JavaTest().bar()