blob: d17180e580925fd75f64e4712b9bbbc811ace26e [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