blob: 9fd03e26d50fb6b9c3275ec97a5f3792d016c69d [file] [log] [blame]
module mod
implicit none
integer :: variable !<<<<< 3, 14, 8, fail-final
contains
integer function getVariable()
getVariable = 99999
end function
end module
program encap1
use mod
implicit none
print *, variable
variable = 3
print *, variable
end program encap1