Suppose I have the following setup
type BarType
integer :: i
end type
type FooType
type(BarType) :: bar
end type
I want to have another type
type BazType
type(BarType), pointer :: barPtr
end type
and set barPtr to point to foo%bar. To do this I would have to declare type(BarType), target :: bar, but I got an error. I didn't investigate further, and decided to change strategy, but just for curiosity, do you know if this is allowed ?