Files
kotlin/compiler/testData/codegen/boxAgainstJava/constructor/genericConstructor.kt
2014-06-26 20:57:40 +04:00

10 lines
135 B
Kotlin
Vendored

import test.genericConstructor
class Subclass : genericConstructor<Int>(42) {
}
fun box(): String {
Subclass()
return "OK"
}