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