If I would have a variable a declared by A a and a method m with void m(B b). Is there any way that calling m(a)
a
A a
m
void m(B b)
m(a)
This works if A is a subclass of B
A
B