b485c7ae26
BoxWithJava tests now by default are loaded with the classloader which has test's classpath in itself, as in the former ClassPathInTheSameClassLoaderTest
12 lines
168 B
Kotlin
12 lines
168 B
Kotlin
class A {
|
|
class object: funClassObject() {
|
|
fun test(): String {
|
|
return funClassObject.protectedFun()!!
|
|
}
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return A.test()
|
|
}
|