blob: e341aba94be2b645fd4b418996e0493e7a6cbc7f [file] [log] [blame]
module mod
implicit none
integer, target :: int
end module
program encap1
use mod
implicit none
integer, pointer :: ptr !3,22,3
int = 3
ptr => int
int = 4
print *, ptr
end program encap1