713c6f13ae
See the comment in JetTypeMapper
19 lines
307 B
Java
19 lines
307 B
Java
class ExtendsB extends B {
|
|
void test() {
|
|
byte x = foo();
|
|
Byte y = foo();
|
|
Object z = foo();
|
|
}
|
|
}
|
|
|
|
class ExtendsC extends C {
|
|
void test() {
|
|
byte x = foo();
|
|
Byte y = foo();
|
|
Object z = foo();
|
|
}
|
|
|
|
@Override
|
|
public Byte foo() { return 42; }
|
|
}
|