Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
compileJavaAgainstKotlin
/
method
/
primitiveOverride
/
ManyClassesHierarchy.kt
blob: 404576a1c11d061aabd1a45f0adc994f158cf146 [
file
]
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
}