5 ! Test case was failing with the initial version of the
8 ! Based on the Fortran XML library FoX
15 integer, allocatable
:: i(:)
20 type(dict_item
), pointer :: d
=> null()
23 public
:: dictionary_t
24 public
:: get_prefix_by_index
27 pure
function get_prefix_by_index(dict
) result(prefix
)
28 type(dictionary_t
), intent(in
) :: dict
29 character(len
=size(dict
%d
%i
)) :: prefix
30 end function get_prefix_by_index
31 end module m_common_attrs
33 module m_common_namespaces
34 use m_common_attrs
, only
: dictionary_t
35 use m_common_attrs
, only
: get_prefix_by_index
36 end module m_common_namespaces