actually, <$self->{FH}> is a glob. btrott is right in that only a simple scalar reference can be used inside angle brackets to refer to a filehandle. anything else that's more complicated is instead a glob. these will do the same thing:
$h{foo} = '*.c';
print <$h{foo}>
and
print glob $h{foo};
and also
print <*.c>;