1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
18 lines
210 B
Kotlin
18 lines
210 B
Kotlin
interface A {
|
|
fun foo(): String {
|
|
return "OK"
|
|
}
|
|
}
|
|
|
|
interface B : A
|
|
|
|
class C : B {
|
|
override fun foo(): String {
|
|
return super.foo()
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return C().foo()
|
|
}
|