Group: comp.lang.fortran · Group Profile · Search for Sub8 in comp.lang.fortran
Author: Steven Correll
Date: Jan 17, 2007 14:32
... C1232 and C1233 in these examples? cat s8.f90 subroutine s8() implicit none interface subroutine sub8(dummy8) integer, volatile, dimension(3) :: dummy8 end subroutine sub8 end interface integer, dimension(8) :: a call sub8(a(1:5:2)) end subroutine s8 gfortran s8.f90 -c -std=f2003 ...
|