Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
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
}