blob: 12d67fc5e921df6240cce912caae4175ac80d699 (
plain)
1
2
3
4
5
6
7
8
|
! Check that inquiry functions are allowed as specification expressions.
subroutine inquiry(x1)
implicit none
real, dimension(1:), intent(out) :: x1
real, dimension(1:size(x1)) :: x3
x3 = 0
x1 = x3
end subroutine
|