If a variable x passed to procedure tst is of type foo, print "Same type." If it is of a type that extends foo, print "Extends type." If it is neither, print "Not related."
procedure tst(x: tobject);
begin
if x.ClassType = foo then
writeln('Same type')
else if x is foo then
writeln('Extends type')
else
writeln('Not related');
end;
The concept of "extending" only applies to classes.
subroutine tst (x)
class (*), intent(in) :: x
type (foo) :: y
if (same_type_as (x,y)) then
write (*,'(A)') "Same type."
else if (extends_type_of (x,y)) then
write (*,'(A)') "Extends type."
else
write (*,'(A)') "Not related."
end if
end subroutine tst
procedure tst(x: tobject);
begin
if x.ClassType = foo then
writeln('Same type')
else if x is foo then
writeln('Extends type')
else
writeln('Not related');
end;