Given some derived type
TYPE(t_mytype)
INTEGER :: member
END TYPE
the following field access is accepted by multiple Fortran compilers
TYPE(t_mytype) :: var
var% member = 1
However, when hovering over member in VSCode, no information is shown. If there is a variable member in the same scope, its declaration is shown instead.
Given some derived type
the following field access is accepted by multiple Fortran compilers
However, when hovering over
memberin VSCode, no information is shown. If there is a variablememberin the same scope, its declaration is shown instead.