Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
compileJavaAgainstKotlin
/
method
/
primitiveOverride
/
ByteOverridesObject.kt
blob: ca45627f88a4d8564d479627f65951cb3e26df05 [
file
] [
log
] [
blame
]
package
test
interface
A
<
T
>
{
fun foo
():
T
}
open
class
B
:
A
<
Byte
>
{
override
fun foo
():
Byte
=
42
}
abstract
class
C
:
A
<
Byte
>