Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6fc27c22f44d8051bf2e89f1657c0d9741c281c0
/
.
/
compiler
/
testData
/
compileJavaAgainstKotlin
/
method
/
primitiveOverride
/
NullableIntOverridesObject.kt
blob: 642fdaf23dffc96e11ac257a20ae01c48743bf1f [
file
]
package
test
interface
A
<
T
>
{
fun foo
():
T
}
open
class
B
:
A
<
Int
?>
{
override
fun foo
():
Int
?
=
42
}
abstract
class
C
:
A
<
Int
?>