hi everyone!
i am looking for a simple way to do the following in Fortran 2003 (using ifort 12.0.0):
module mymod
type, abstract :: type_a
logical val
type(type_b), pointer :: myptr
end type
type, abstract :: type_b
logical val
type(type_b), pointer :: myptr
end type
end...