Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
compileJavaAgainstKotlin
/
method
/
primitiveOverride
/
OverrideInJava.java
blob: 3bf1af2068c4953a2476b71d85baf67909b677fc [
file
] [
log
] [
blame
]
package
test
;
class
ExtendsB
extends
B
{
@Override
public
Integer
foo
()
{
return
239
;
}
void
test
()
{
int
x
=
foo
();
Integer
y
=
foo
();
Object
z
=
foo
();
}
}