blob: 5d602720f1fbe20fcda348ee85b315d9095a6a2e [file] [log] [blame]
module module1
implicit none
integer :: accessed_variable = 1, assigned_variable, unused_variable
integer, private :: private_variable
private :: private_subroutine
contains
subroutine called_subroutine; end subroutine
subroutine unused_subroutine; end subroutine
subroutine private_subroutine; end subroutine
end module module1