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