4 ! Unresolved fixup while loading a module.
6 ! This tests that the specification expression A%MAX_DEGREE in module BSR is
7 ! correctly loaded and resolved in program MAIN.
9 ! Original testcase from Daniel Shapiro <shapero@uw.edu>
10 ! Reduced by Tobias Burnus <burnus@net-b.de> and Janus Weil <janus@gcc.gnu.org>
17 subroutine init_interface (A
)
18 class(sparse_matrix
), intent(in
) :: A
20 real function get_value_interface()
30 type, extends(sparse_matrix
) :: bsr_matrix
32 procedure
:: get_neighbors
35 function get_neighbors (A
)
36 class(bsr_matrix
), intent(in
) :: A
37 integer :: get_neighbors(A
%max_degree
)