Files
kotlin/compiler/testData/compileJavaAgainstKotlin/method/primitiveOverride/NullableIntOverridesObject.kt
2014-03-19 23:24:27 +04:00

12 lines
136 B
Kotlin

package test
trait A<T> {
fun foo(): T
}
open class B : A<Int?> {
override fun foo(): Int? = 42
}
abstract class C : A<Int?>