Files
kotlin-fork/compiler/testData/codegen/box/bridges/kt1959.kt
T
Alexander Udalov 41a416da60 Move blackBoxFile() testData to box/ directory
Delete all test methods (and empty test classes), since they'll be
auto-generated
2013-01-28 18:20:17 +04:00

14 lines
196 B
Kotlin

open class A<T> {
open fun f(args : Array<T>) {}
}
class B(): A<String>() {
override fun f(args : Array<String>) {}
}
fun main(args: Array<String>) {
B()
}
fun box(): String = "OK"