1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
14 lines
255 B
Kotlin
14 lines
255 B
Kotlin
fun box() = Class().printSome()
|
|
|
|
public abstract class AbstractClass<T> {
|
|
public fun printSome() : T = some
|
|
|
|
public abstract val some: T
|
|
}
|
|
|
|
public class Class: AbstractClass<String>() {
|
|
public override val some: String
|
|
get() = "OK"
|
|
|
|
}
|