mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
15 lines
212 B
Java
Vendored
15 lines
212 B
Java
Vendored
package test;
|
|
|
|
class ExtendsB extends B {
|
|
@Override
|
|
public Integer foo() {
|
|
return 239;
|
|
}
|
|
|
|
void test() {
|
|
int x = foo();
|
|
Integer y = foo();
|
|
Object z = foo();
|
|
}
|
|
}
|