2005-08-16 Thomas Koenig <Thomas.Koenig@online.de>
[official-gcc.git] / gcc / testsuite / gfortran.dg / inquire-complex.f90
blob188c932084c951655f8825e0848c67920ec056ff
1 ! { dg-do run }
2 ! PR 23428: Inquire(iolength) used to give the wrong result.
3 program main
4 implicit none
5 integer s4, s8
7 complex(kind=8) c8
8 complex(kind=4) c4
10 inquire (iolength=s) c8
11 if (s4 /= 8 .or. s8 /= 16) call abort
13 end program main