I'm having a problem with the following code:
module my_class
type, public :: my_object
real, allocatable, private :: a(:)
real, pointer :: b => null()
end type my_object
interface my_object
module procedure :: init
end interface my_object
contains
function init () result ( self )
type(my_object), target :: self
allocate( self % a(2) )
self % a = (/ 1.0, 2.0 /)
self % b => self % a(1)
end function init
end module my_class
program test
use my_class
type(my_object) :: object
object = my_object()
print *, associated( object % b )
print *, "main: ", object % b
object % b = 7.
print *, "main: ", object % b
end program test
Attributes a
and b
are initialized in the class constructor. The expected result should be:
T
main: 1.00000000
main: 7.00000000
and this I get when I use a gfortran 4.7.2
compiler, whereas code compiled with ifort 13.0.1
produces the following result:
T
main: 1.1631523E+33
main: 7.000000
which I do not understand. Where I'm making an error?
I tried this in ifort 14.0.1 and got the same answer as gfortran. You may have encountered a compiler bug in the old version.