You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following code is valid Fortran but F_Front trigger an error as show below.
module mod1
type type1
integer(kind=8) :: int1
end type
containssubroutinesub1(t, char1)
type(type1) :: t
character char1*(*), char2*(t%int1)
endsubroutine
end module mod1
"dummy.f90:mod1", line 11: integer constant is required