http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47789
Summary: derived type with no components
Product: gcc
Version: 4.6.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: fortran
AssignedTo: unassig...@gcc.g
Assignee: unassigned at gcc dot gnu.org
Reporter: eddyg_61-bugzilla at yahoo dot it
In the following program the final subroutine are not called
module testfin_mod
implicit none
type tfin
integer :: t = -1
contains
final :: del_tfin
final :: del_tfinv
end type
contains
Assignee: unassigned at gcc dot gnu.org
Reporter: eddyg_61-bugzilla at yahoo dot it
Target Milestone: ---
I think that this program gives an erroneous result:
program wzerror
implicit none
integer, parameter :: N = 20
complex, target :: wz(N)
real, pointer :: wr