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