I have a fortran type which has an entry which is a type again. This type has a allocatable integer array:
type inner
integer, allocatable :: dyn_arr(:)
integer another_var
end type
type outer
type(inner) entry
type(inner) another_entry
end type
I allocate the array and then call a subroutine. Inside the subroutine I want to access the array.
type(outer) main_struct
allocate(main_struct%entry%dyn_arr(100))
call routi(main_struct)
My code segfaults. When I run with debugger, before the call everything seems fine, when I enter the function routi, the debugger says dyn_arr is not allocated. How can that be?
Thanks for help.