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