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