Hi, I was just working through the description of the new Fortran 2003 features document by John Reid and couldn't get the parameterized derived types examples to compile. Are these supported in the current version of the Linux compiler? Example code below, thanks
-Gabe
TYPE matrix(kind,m,n)
INTEGER, KIND :: kind=KIND(0.0D0)
INTEGER, LEN :: m,n
REAL(kind) :: element(m,n)
END TYPE


