blob: 31b2cb3028bd53227edaa673c9d78d1f5d829ab5 [file] [log] [blame]
module my_module
type my_type
!integer :: a
contains
procedure :: write => write_mytype
end type my_type
contains
subroutine write_mytype(this)
class(my_type),intent(in) :: this
write (*,*) ''
end subroutine write_mytype
end module my_module