5 ! Contributed by Alexander Tismer
11 type :: sparseMatrix_t
13 end type sparseMatrix_t
14 END MODULE m_sparseMatrix
16 !===============================================================================
18 ! USE m_sparseMatrix !< when uncommenting this line program works fine
23 subroutine test(matrix
)
25 class(sparseMatrix_t
), pointer :: matrix
29 !===============================================================================
35 CLASS(sparseMatrix_t
), pointer :: sparseMatrix
37 call test(sparseMatrix
)