Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
compileJavaAgainstKotlin
/
method
/
primitiveOverride
/
IntOverridesNumber.kt
blob: 4e59e10e67977d39188d6359d8caef63839cf25c [
file
]
package
test
interface
A
<
T
:
Number
>
{
fun foo
():
T
}
open
class
B
:
A
<
Int
>
{
override
fun foo
():
Int
=
42
}
abstract
class
C
:
A
<
Int
>