Files
kotlin/compiler/testData/compileJavaAgainstKotlin/method/primitiveOverride/NullableIntOverridesObject.kt
2015-05-12 19:43:17 +02:00

12 lines
140 B
Kotlin
Vendored

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