79f50975b1
#KT-13933 Fixed
19 lines
398 B
Plaintext
Vendored
19 lines
398 B
Plaintext
Vendored
interface Application {
|
|
fun put(testKey: String, s: String)
|
|
}
|
|
|
|
abstract class ApplicationModule {
|
|
abstract fun Application.install()
|
|
}
|
|
|
|
class AppTest {
|
|
class ApplicationLoaderTestApplicationFeatureWithEnvironment() : ApplicationModule() {
|
|
override fun Application.install() {
|
|
put(TestKey, "2")
|
|
}
|
|
}
|
|
|
|
companion object {
|
|
val TestKey = ""
|
|
}
|
|
} |