Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gfortran.fortran-torture / compile / inquiry_1.f90
blob12d67fc5e921df6240cce912caae4175ac80d699
1 ! Check that inquiry functions are allowed as specification expressions.
2 subroutine inquiry(x1)
3 implicit none
4 real, dimension(1:), intent(out) :: x1
5 real, dimension(1:size(x1)) :: x3
6 x3 = 0
7 x1 = x3
8 end subroutine