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