The following is non-standard and the compiler should probably generate a
warning/error with '-pedantic -std=f95'
module test
implicit none
type functionparams
integer :: i
end type functionparams
contains
subroutine sim_mc(func,params)
interface
function func(fparams)
type(functionparams) :: fparams
real :: func
end function func
end interface
type(functionparams) :: params
end subroutine sim_mc
end module test
end
--
Summary: error needed
Product: gcc
Version: 4.1.0
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: fortran
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: jv244 at cam dot ac dot uk
CC: gcc-bugs at gcc dot gnu dot org
GCC target triplet: i686-pc-linux-gnu
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20903