mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
In this commit, only IDE tests are added, because we look for module declarations in the IDE across the whole project, whereas in the compiler we should do this on the module path only and that requires separate work (KT-18599) which is done in the following commits. (The change in Cache.kt is needed so that JvmModuleAccessibilityChecker.ClassifierUsage, which is an inner class, would be injected properly.) #KT-18598 In Progress #KT-18599 In Progress
10 lines
139 B
Kotlin
Vendored
10 lines
139 B
Kotlin
Vendored
package dependency
|
|
|
|
import dependency.impl.KImpl
|
|
|
|
open class K {
|
|
companion object {
|
|
fun getInstance(): KImpl = KImpl()
|
|
}
|
|
}
|