Mercurial > hg > CbC > CbC_gcc
annotate gcc/testsuite/gfortran.dg/pr32222.f90 @ 131:84e7813d76e9
gcc-8.2
author | mir3636 |
---|---|
date | Thu, 25 Oct 2018 07:37:49 +0900 |
parents | 04ced10e8804 |
children |
rev | line source |
---|---|
111 | 1 !PR fortran/32222 |
2 ! { dg-do compile } | |
3 | |
4 module splinemod | |
5 implicit none | |
6 integer, parameter :: dl = KIND(1.d0) | |
7 Type lSamples | |
8 integer l(10) | |
9 end Type lSamples | |
10 end module splinemod | |
11 | |
12 subroutine InterpolateClArr(lSet) | |
13 use splinemod | |
14 type (lSamples), intent(in) :: lSet | |
15 real(dl) xl(10) | |
16 xl = real(lSet%l,dl) | |
17 end subroutine InterpolateClArr |