1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
15 lines
233 B
Kotlin
15 lines
233 B
Kotlin
fun box() =
|
|
B().method()
|
|
|
|
public open class A(){
|
|
public open fun method() : String = "OK"
|
|
}
|
|
|
|
public class B(): A(){
|
|
public override fun method() : String {
|
|
return ({
|
|
super.method()
|
|
})()
|
|
}
|
|
}
|